/* Reset generale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stile del contenitore */
.container {
    text-align: center;
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
}

/* Stile del testo di benvenuto */
.welcome-text {
    font-size: 14px;
    font-family: 'Rasa', serif;
    color: #333;
    margin-bottom: 10px;
}

/* Nome principale */
.name {
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    color: #000;
    margin-bottom: 20px;
}

/* Contenitore dell'immagine */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    border-radius: 10px;
}

/* Testo descrittivo */
.description {
    font-size: 16px;
    font-family: 'Pridi', serif;
    color: #444;
    margin-top: 20px;
    line-height: 1.5;
}
