@font-face {
  font-family: Doodle;
  src: url("/fonts/Doodle.ttf");
}
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Doodle;
  height: 100vh;
  width: 100vw;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background-image: url("/img/bg-a.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

h1 {
  font-size: 5rem;
  margin-top: 250px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 4rem;
    margin-top: 150px;
  }
}

a {
  color: white;
}
a:hover {
  color: #ff0000;
}

.links {
  font-size: 1.5rem;
  font-weight: 900;
}

@keyframes squiggly-anim {
  0% {
    filter: url("#squiggly-0");
  }
  25% {
    filter: url("#squiggly-1");
  }
  50% {
    filter: url("#squiggly-2");
  }
  75% {
    filter: url("#squiggly-3");
  }
  100% {
    filter: url("#squiggly-4");
  }
}
.test, h1 {
  animation: squiggly-anim 0.34s linear infinite;
}

.test {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  outline: none;
  text-align: center;
  line-height: 1;
}/*# sourceMappingURL=style.css.map */