*{
    margin: 0;
    list-style-type: none;
    box-sizing: border-box;
    font-family: "Merriweather", serif;
    font-weight: 300;
    font-style: normal; 
    color: white;
}


header{   
    background-color: rgb(107, 71, 206);
    padding: 8px 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid ;


    position: fixed;
    left: 0;
    right: 0;

}






.botonLike.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.botonLike.liked {
    background-color: #ff4081; /* o el color que prefieras */
    color: white;
}

/* Menu dentro de la lsita opciones --------------------------------- */

.MenuLista{
    display: flex;
    gap: 1rem;
}


li > a{
    text-decoration: none;
    position: relative;
    cursor: pointer;
    background-color: inherit;
    border: none;
    padding: 5px;
    font-weight: bold;
}


li > a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}


a:hover::after{
    transform: scaleX(1);
}



/*  */
.burger , #burger{
    display: none;
}





.padre{
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: linear-gradient(to top, rgb(225, 111, 130) , rgb(76, 76, 225));



}


.tarjetas{
    margin-top: 4rem;
    height: 400px;
    width: 300px;
    text-align: center;
    border-radius: 80px  60px ;
    border: 3px solid white;
    background-color: rgb(25, 27, 28);
}




.posicion-foto{
    height: 200px;
    width: 200px;
    border-radius: 100px;
    margin: 1rem auto;
    object-fit: cover;
    box-shadow: 0 0 10px white;
}




.botonLike {
    padding: 5px 10px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

footer{
    background-color: rgb(213, 75, 98) ;
    border-top: 1px solid ;

    font-weight: bold;
    padding: 1rem;
}


.logo-redesSociales{
    display: flex;
    justify-content: center;
    text-decoration: none;
    column-gap: 5px;
    }



@media (max-width: 900px){

    .burger{
        display: block;
    }

    .MenuLista{
        clip-path: circle(0 at center);
        position: fixed;
        top: 54px;
        background-color: rgb(107, 71, 206);
        height: 200px;
        right: 0;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        flex-direction: column;
        transition: clip-path 1s ease-in-out;

    }


    #burger:checked + .MenuLista{
        clip-path: circle(100% at center);
    }

  
}