/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: hsl(228, 45%, 44%);
}

/* Tipografía */
h1 {
    font-size: 15px;
}

p {
    font-size: 10px;
}

/* Componentes */
.img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.contenedor {
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    
    /* Dimensiones */
    max-width: min(22%, 120rem);
    margin: 0 auto;
    margin-top: 10rem;
    padding: 1rem;
    
    /* Estilos visuales */
    background-color: white;
    border-radius: 5%;
}
