*{
    margin: 0;
}


body{
    display: grid;
    font-family:Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(151, 0, 0, 0.479),
    rgba(0, 0, 0, 0.45)
    ), url(../img/fondo.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 100dvh;
    grid-template-rows: auto 1fr auto;
}

header{
  height: 150px;
}
main{
  height: 100%;
}

.titulo {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: end;
    font-family: "Audiowide", sans-serif;
}

h1{
  color:azure;
  border-radius: 10px;
  font-size: 4rem;
  text-align: center;
  transition: 0.40s; 
}
h1:hover{
  font-size: 4.1 rem;
  color: rgb(0, 0, 0);
  text-shadow: 0px 0px 10px rgb(255, 255, 255);
  
}
.flex{
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: space-evenly;
}

.link {
  font-family: "Audiowide", sans-serif;
}
.capuerto img{
  height: 45dvh;
}

a.btn-compra{
    display: block;
    text-decoration: none;
    color:azure;
    padding: 10px;
    background: rgb(186, 2, 2);
    text-align: center;
    border-radius: 4px;
    width: 205px;
    height: 20px;
}

a.btn-compra:hover{
    color: rgb(150, 150, 150);
    box-shadow: 0px 0px 10px rgb(255, 255, 255);
    background: rgb(57, 50, 50);
}

  footer{
    height: 100px;
  }
  footer .footer-title{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .titulo-final{
    text-align: center;
    font-size: 2rem;
    color: #9e9797;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }

  @media (max-width: 600px){
    
    .titulo {
      justify-content: center;
    }
  
    h1{
      font-size: 1.7rem;
    }
    h1:hover{
      font-size: 1.8rem;
    }
    .login {
 
        flex-wrap: wrap;
        margin: 30px 0px ;
        box-sizing: border-box;
        width: 200%;
        justify-content: center;
        border-radius: 10px;
        padding: 5px;
        box-shadow: 0px 0px 10px rgb(255, 255, 255);
        height: 450px;
    }

    .titulo-final{
        text-align: center;
        font-size: 1.3rem;
      }

}