body {
  color: #333;
  background-color: #efe3cc;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

.lp-wrpr {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-image: url('../images/bg-desk-tablet.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100svh;
  padding-top: 4rem;
  padding-right: 5svw;
  display: flex;
}

.leyends {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
  position: relative;
  right: 20%;
}

.h1 {
  max-width: 21ch;
}

.text {
  max-width: 51ch;
}

.buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #fff;
  background-color: #0b2c31;
  background-image: linear-gradient(#0b2c31, #196571);
  border: .125rem solid #145d55;
  border-radius: 99rem;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.button.secondary {
  color: #0d2d33;
  background-color: #fff;
  background-image: none;
}

.logo {
  width: 100%;
  max-width: 16rem;
}

@media screen and (max-width: 767px) {
  .lp-wrpr {
    background-image: url('../images/bg-mobile.svg'), url('../images/bg-desk-tablet.svg');
    background-position: 50% 0, 50% 0;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    padding-bottom: 50%;
    padding-right: 0;
  }

  .leyends {
    position: static;
  }
}

@media screen and (max-width: 479px) {
  .lp-wrpr {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 60%;
  }

  .leyends {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .buttons {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }

  .logo {
    max-width: 12rem;
  }
}


