@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  min-height: 100dvh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 1)),
    url("../assets/campo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.subwrapper {
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.tittles-wrapper{
  display: flex;
}

.line {
  height: 140px;
  width: 10px;
  margin-right: 20px;
  background-color: #7ab956;
}

.tittles {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tittle {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  font-size: 100px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.tittle span {
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.logo {
  width: 160px;
}


.button {
  color: white;
  padding: 20px 50px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  list-style: none;
  background-color: #0d6efd;
  transition: all 0.5s;
}

.button:hover {
  background-color: #ffffff;
  color: #0d6efd;
}

.person-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 50px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  animation: bounce 0.7s ease-in-out infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(10px);
  }
}

@media (max-width: 1500px) {

  .tittle {
    font-size: 90px;
  }

  .logo {
    width: 140px;
  }

  .button {
    font-size: 20px;
  }

}

@media (max-width: 1300px) {

    .tittle {
      font-size: 80px;
    }
}

@media (max-width: 1200px) {
  .subwrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .tittle {
    font-size: 80px;
  }

  .button-wrapper{
    margin-top: 80px;
  }

  .logo {
    width: 100px;
  }

  .button {
    font-size: 15px;
  }
}


@media (max-width: 700px) {
  .tittle {
    font-size: 60px;
  }
}

@media (max-width: 600px) {
  .line {
    height: 300px;
  }
  .tittles{
    flex-direction: column;
  }
}