@font-face {
  font-family: "TimesVO";
  src: url("./fonts/TimesVO.woff2")
}

body {
  cursor: pointer;
  font-family: "TimesVO";
  font-size: 36px;
  width: 100vw;
  height: 100vh;
  margin: 0;
}

#container {
  gap: 4px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  text-align: center;
  justify-content: center;
  position: relative;

}

button {
  background-color: white;
  border: none;
  margin-top: 8px;
  color: black;
  text-decoration: none;
}

a {
  background-color: transparent;
  color: black;
  text-decoration: none;
}


.trail {
  position: absolute;
  height: 65px; width: 65px;
  border-radius: 100px !important;
  -webkit-animation: bgcolor 1s infinite;
  animation: bgcolor 1s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@keyframes bgcolor {
  0% {
      background-color: blue
  }

  100% {
      background-color: red
  }
}

#overlay {
  filter: blur(400px);
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: white;
}

::selection {
  background: white;
}
::-moz-selection {
  background: white;
}

@media only screen and (max-width: 600px) {
  #container {
    justify-content: start;
    padding: 32px;
  }
}