* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.hero {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-image: url("./background.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.nav {
  display: flex;
  width: 84%;
  margin: auto;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
}

.detail {
  position: sticky;
  top: 30%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.detail h1 {
  font-family: "Staatliches", cursive;
  font-size: 38px;
  color: #fff;
  margin-bottom: 20px;
}

.detail p {
  font-family: "Oswald", sans-serif;
  font-size: 23px;
  color: #fff;
  line-height: 29px;
}

.link {
  position: relative;
  display: inline-block;
  padding: 12px 36px;
  margin: 20px 15px;
  width: calc(100% - 155px);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: "Oswald", sans-serif;
  border-radius: 40px;
  overflow: hidden;
  background-color: #1bd13a;
}

.images {
  width: 45%;
  height: 80%;
  position: absolute;
  bottom: 0;
  right: 100px;
}

.images img {
  height: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: bottom 1s, left 1s;
}

.images:hover .shape {
  bottom: 40px;
}

.images:hover .main {
  left: 45%;
}

span {
  position: absolute;
  background: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  animation: animate 1s linear infinite;
}

.footer__container {
  position: sticky;
  top: 87%;
  display: flex;
  flex-direction: column;
}

.footer__container-support,
.footer__container-links div {
  align-items: center;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 15px;
}

.footer__container-links {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@keyframes animate {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.5;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}

/* MEDIA */

@media only screen and (min-width: 768px) {
  .detail h1 {
    font-size: 50px;
  }
  .detail p {
    font-size: 28px;
  }
  .link {
    width: auto;
    font-size: 25px;
  }
}
