.titolo {
    color:deeppink;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;      
    font-size: 6rem;
    text-align: center;        
    margin-top: 5px;    
    margin-bottom: 5px;      
}

body {
    background-color: rgb(249, 237, 221);
}

.contenitore {
    display: flex;             
    justify-content: center;  
    gap: 10px;    
}

.div {
    background-color: deeppink;
    color: white;
    width: 33%;
    height: 33%;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

    display: flex;            
    justify-content: center;     
    align-items: center;
    flex-direction: column;
}

.div img {
    width: 85%;                  /* occupa tutta la larghezza interna del div */
    height: auto;                 /* mantiene proporzioni */
    margin-bottom: 5px;          /* spazio sotto l’immagine */
    border-radius: 10px;
}

.linea {
    width: 85%;          
    border: 1px solid white;
    margin-top: 2px;
}

.sottotitolo {
    margin-bottom: 1px;
    margin-top: 5px;
    font-size: 2rem;
    font-weight: 900;
}