body,
html {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.5rem;
  color: white;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/backgrounds/backgroundNice.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.menu-button {
  position: fixed;
  left: 80%;
  top: 88%;
  background: #2ecc71;
  height: 55px;
  width: 210px;
  border: none;
  border-radius: 5px;
  filter: drop-shadow(0.2vh 0.2vh 0px #17b55a)
    drop-shadow(0.4vh 0.4vh 0px #17b55a);
  color: #fff;
  font-weight: 900;
  font-size: 3vh;
  margin: 20px;
  -webkit-box-shadow: inset 0px 0px 0px 3px #1b1b1b27;
  -moz-box-shadow: inset 0px 0px 0px 3px #1b1b1b27;
  box-shadow: inset 0px 0px 0px 3px #1b1b1b27;
}

.menu-button:hover {
  filter: drop-shadow(0.2vh 0.2vh 0px #17b55a)
    drop-shadow(0.4vh 0.4vh 0px #17b55a) drop-shadow(0.6vh 0.6vh 0px #17b55a);
  transition: 0.4s;
  cursor: pointer;
}

a,
img {
  position: absolute;
  left: 5%;
  width: 200px;
}
.img1 {
  top: 10%;
}
.img2 {
  top: 25%;
}
.img3 {
  top: 40%;
}
.img4 {
  top: 55%;
}
a > span {
  transform: translateX(50%, -50%);
  font-size: 2.5vh;
  font-weight: 900;
  color: #fff;
  text-shadow: 0px 0px 10px #000;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.2vh;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#animatedText {
  position: relative;
  animation: credits 20s linear infinite;
}

@keyframes credits {
  0% {
    top: 100%;
  }
  25% {
    top: 45%;
  }
  50% {
    top: -10%;
  }
  75% {
    top: -65%;
  }
  100% {
    top: -130%;
  }
}
