html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: 'Lexend Deca', sans-serif;
    overflow-y: hidden;
 
}

.fondo{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("/elements/rm435-025.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.5;
    z-index: -10;
}

.contenido{

position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 1rem 1.7rem;
gap:2rem;
height: 100dvh;

}

.female{
    width: 110px;
    height: 130px;
}

h1{
    text-align: center;
}
.titulo p{
    font-weight: 300;
    text-align: center;
}

.start{
    display: flex;
    flex-direction: row;
    background-color:#5f33e1;
    height:45px;
    width:60%;
    filter:drop-shadow(0px 10px 20px rgba(0.1,0.3,1,0.2));
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
    margin-bottom: 2rem;
  
}

.start a{

    font-size: 22px;
    font-weight: 700;
    color: whitesmoke;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    
}
.arrow{
    width: 30px;
    height: 30px;
    
}


@media (max-width: 600px) {
  .contenido {
    padding: 1.2rem;
  }

  .start {
    width: 90%; 
  }
}

