body{
    background-color: hsl(47, 88%, 63%);
}
.contenedor{
    position: absolute;
    top: 15%;
    left: 20%;
    width: 335px;
    border-radius: 15px;
    padding: 20px;
    background-color: aliceblue;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 10px 10px;/*Usado para sombreado cuando es de dos y si quiero q sea menos notario uso 3 */
}
img{
    border-radius: 15px;
}
header h3{
    background-color: hsl(47, 88%, 63%);
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    display: inline-flex;
    margin-bottom: 0;
}
header p{
    font-weight:500;
}
main p{
    color: darkgrey;
    margin-bottom: 20px;
}
footer{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
footer img{
    width: 32px;
}
@media(min-width:1000px){
    .contenedor{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}