/* This is the worst work i've done please don't judge :( */

::selection {
  color: black;
}

#canvas {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@font-face {
  font-family: "Poppins";
  src: url("../Poppins-Light.ttf") format("truetype");
}

html {
  width: 100%;
  height: 100%;
}
body {
  cursor: none !important;
  text-align: center;
  margin: 0px;
  padding: 0px;
  height: 100%;
  color: #fff;
  font-family: sans-serif;
  background: linear-gradient(
    45deg,
    #d7ee52,
    #e73c7e,
    #8523d5,
    #eb454d,
    #2b86c5
  );
  background-size: 300% 100%;
  -webkit-animation: Gradient 15s ease infinite;
  -moz-animation: Gradient 15s ease infinite;
  animation: Gradient 15s ease infinite;
  font-family: "Poppins", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
    sans-serif;
}

.cringe {
  display: flex;
  justify-content: center;
  align-items: center;
}

.backdrop {
  height: 28rem;
  width: 35rem;
  backdrop-filter: blur(1rem);
  border-radius: 50px;
  z-index: 10;
}
.vh {
  height: 100%;
  align-items: center;
  display: flex;
}
.vh > div {
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
img {
  max-width: 100%;
}
.wrap {
  text-align: center;
  margin-top: 2rem;
}
.wrap p {
  margin-right: 0.825rem;
}
.wrap h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 90px;
}
.wrap h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 80px;
}

@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media screen and (max-width: 500px) {
  .backdrop {
    height: 28rem;
    border-radius: 20px;
  }
}
