body{
    margin: 0;
    padding: 0;
    background-color: #D5E1EF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Arial', sans-serif;
}
#box{
    width: 300px;
    height: 500px;
    background-color: white;
    border-radius: 15px;
    text-align: center;
    padding: 15px;
}
img{
    width:280px;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
}
#box p{
    font-size: 16px;
    color: #7b879d; /* Color gris de la imagen */
    margin: 0;
    line-height: 1.4;
}
#box h3{
    color:#26364F;
    font-size: 22px;
    font-weight:bolder;
    margin: 30px 0 20px 0;
    line-height: 1.3;
}
@media screen and (max-width:590px){
    body{
    padding: 0;
    background-color: #D5E1EF;
    font-family: 'Arial', sans-serif;
    }
    #box{
    width: 400px;
    height: 600px;
    background-color: white;
    border-radius: 15px;
    text-align: center;
    position: absolute;
    bottom: 20%;
    }
    img{
        width:380px;
        height: 270px;
        border-radius: 15px;
        object-fit: cover;
    }
    #box p{
        font-size: 24px;
        color: #7b879d; /* Color gris de la imagen */
        margin: 0;
        line-height: 1.4;
    }
    #box h3{
        color:#26364F;
        font-size: 30px;
        font-weight:bolder;
        margin: 30px 0 30px 0;
        line-height: 1.3;
    }
}