body{
    margin: 0;
    padding:0;
    background-color: hsl(210, 46%, 95%);
    max-width: 100%;
    height: 100vh;
   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
}

.container{
    background-color: white;
    border-radius: 8px;
    box-shadow: 5px 5px 15px hsl(217, 19%, 35%);

    width: 850px;
    height: 400px;
    display: flex;
    flex-direction: row;
   
}

.img{
    width: 650px;
    height: auto;
    object-position: center;
    height: auto;
    border-radius: 8px;
    position: relative;
}

img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit:cover;
    object-position: center;

}

.parrafo{
    background-color: white;
    border-radius: 8px;
    padding: 36px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: left;
    align-content: center;
    width: 850px;
    height: auto;
    text-align: justify;
    font-family: "Manrope", serif;
    font-size: 13px;
}

h1{
    font-weight: 700;

}

p{
    font-weight: 300;
    
}

span{
    margin-top: 8px;
    font-weight: 300;
}

.redes{
    display: flex;
    justify-content: left;
    flex-direction: row;
    align-items:center;
    align-content: space-between;
    gap: 30px;
    margin-top: 8px;
}

.datos{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.circulito{
    background-color: hsl(212, 23%, 69%);
    border-radius: 100%;
    padding: 6px;
    border: none;
    cursor: pointer;
    position: relative;
    right: -40%;
}

.circulito:hover{
    background-color: hsl(217, 19%, 35%);
}



.share{
    letter-spacing: 3px;
    font-weight: 300;
    font-family: "Manrope", serif;
    font-size: 13px;
    color: white;
    
}


.menu2{
    display: flex;
    flex-direction: row;
    background-color:hsl(217, 19%, 35%);
    border-radius: 8px;
    
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 60px;
    padding: 8px;
    transform: translateX(90%);
    z-index: 1;
}

@media screen and (max-width: 430px){
    
    body{
        margin: 0;
        padding:0;
        background-color: hsl(210, 46%, 95%);
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
    }
    
    .container{
        background-color: white;
        border-radius: 8px;
        box-shadow: 5px 5px 15px hsl(217, 19%, 35%);
    
        width: 350px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
       justify-content: center;
    }

.img{
    width: 350px;
    height: auto;
    object-position: center;
    height: auto;
    border-radius: 8px;
}

img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit:cover;
    object-position: center;

}

.parrafo{
    background-color: white;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: left;
    align-content: center;
    width: 250px;
    height: 400px;
    text-align: justify;
    font-family: "Manrope", serif;
    font-size: 13px;
}

.redes{
    display: flex;
    justify-content: left;
    align-items:center;
    align-content: center;
    margin-top: 8px;
    flex-direction: row;

}

.datos{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
}

.circulito{
    background-color: hsl(212, 23%, 69%);
    border-radius: 100%;
    padding: 6px;
    border: none;
    cursor: pointer;
    position: relative;
    left: -2%;
}

.menu2{
    display: flex;
    flex-direction: row;
    background-color:hsl(217, 19%, 35%);
    border-radius: 8px;
    
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 60px;
    padding: 8px;
    transform: translateX(-15%) translateY(350%);
    position: absolute;
}


}