@font-face {
  font-family: Minecraft;
  src: url("./assets/Minecraft.ttf");
}
* {
  font-family: "Minecraft";
  color: white;
  font-size: 20;
  text-align: center;
  text-shadow: 1px 2px #3e3e3f;
  padding: 0;
  margin: 0;
}

.container {
  background-image: url("./assets/dirt.png");
  width: 100%;
  height: 100%;
}

.bold {
  font-family: "Minecraft";
  font-weight: bold;
}

a {
  text-decoration: none;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
}

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

.info-words-box {
  height: 3rem;
  overflow: hidden;
}

.info-words-box ul {
  margin: 0 0.625rem;
  padding: 0;
  animation-fill-mode: forwards;
  animation: scrollUp 10s infinite;
}

.info-words-box ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  list-style: none;
}

.info-words-box ul:hover {
  animation-play-state: paused;
}

a:hover {
  color: #797979;
}

@media only screen and (max-width: 600px) {
  * {
    font-size: 10px;
  }
}
@media only screen and (max-width: 900px) {
  * {
    font-size: 15px;
  }
}
@keyframes scrollUp {
  5%, 10% {
    transform: translateY(-8.3333333333%);
  }
  14%, 19% {
    transform: translateY(-16.6666666667%);
  }
  23%, 28% {
    transform: translateY(-25%);
  }
  32%, 37% {
    transform: translateY(-33.3333333333%);
  }
  41%, 46% {
    transform: translateY(-41.6666666667%);
  }
  50%, 55% {
    transform: translateY(-50%);
  }
  60%, 65% {
    transform: translateY(-58.3333333333%);
  }
  69%, 74% {
    transform: translateY(-66.6666666667%);
  }
  78%, 83% {
    transform: translateY(-75%);
  }
  87%, 92% {
    transform: translateY(-83.3333333333%);
  }
  96%, 100% {
    transform: translateY(-91.6666666667%);
  }
}/*# sourceMappingURL=index.css.map */