@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&family=Quicksand:wght@300;400;500;600;700&display=swap");
body {
  background-color: rgb(22, 25, 28);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  color: rgb(233, 230, 227);
  font-family: "Nunito", sans-serif;
}
body #backgroundImage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
body #mainScreen {
  animation: 0.5s ease 0s 1 enter;
  position: absolute;
  top: 10vh;
  left: 10vw;
  text-align: center;
  width: 80vw;
  height: 80vh;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3vh;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}
body #mainScreen #content {
  position: absolute;
  width: 80vw;
  top: 20vh;
  height: 40vh;
  justify-content: space-around;
  text-align: center;
  display: flex;
  flex-direction: column;
}
body #mainScreen #content #title {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  font-size: 7vh;
  padding-top: 2vh;
  padding-bottom: 2vh;
  box-sizing: border-box;
  border-bottom: solid 1px rgba(233, 230, 227, 0);
  border-top: solid 1px rgba(233, 230, 227, 0);
}
body #mainScreen #content #title:hover {
  animation: focusTransition 0.2s;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 100%) 1;
  background: rgba(255, 255, 255, 0.01);
}
body #mainScreen #content #sub {
  display: inline-block;
  vertical-align: middle;
  height: 7vh;
  line-height: normal;
  font-size: 4vh;
}
body #mainScreen #content #buttons {
  display: flex;
  height: 7vh;
  width: 100%;
  justify-content: space-around;
}
body #mainScreen #content #buttons button {
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 1.5vh;
  font-weight: lighter;
  color: rgb(233, 230, 227);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1vh;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  min-width: 15vw;
  transition: 0.2s;
}
body #mainScreen #content #buttons button span {
  display: block;
}
body #mainScreen #content #buttons button:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@keyframes focusTransition {
  0% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 49%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 51%) 1;
    background: rgba(255, 255, 255, 0);
  }
  10% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 45%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 55%) 1;
    background: rgba(255, 255, 255, 0.001);
  }
  20% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 40%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 60%) 1;
    background: rgba(255, 255, 255, 0.002);
  }
  30% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 35%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 65%) 1;
    background: rgba(255, 255, 255, 0.003);
  }
  40% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 30%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 70%) 1;
    background: rgba(255, 255, 255, 0.004);
  }
  50% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 25%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 75%) 1;
    background: rgba(255, 255, 255, 0.005);
  }
  60% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 20%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 80%) 1;
    background: rgba(255, 255, 255, 0.006);
  }
  70% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 15%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 85%) 1;
    background: rgba(255, 255, 255, 0.007);
  }
  80% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 90%) 1;
    background: rgba(255, 255, 255, 0.008);
  }
  90% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 95%) 1;
    background: rgba(255, 255, 255, 0.009);
  }
  100% {
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(233, 230, 227) 50%, rgba(0, 0, 0, 0) 100%) 1;
    background: rgba(255, 255, 255, 0.01);
  }
}
@keyframes enter {
  0% {
    transform: translateY(-100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
  100% {
    transform: translateY(0);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}

/*# sourceMappingURL=style.css.map */
