* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f0f0;
    font-family: 'Lora', serif;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
}

.container {
    padding: 20px;
    margin-bottom: 60px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 5px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    /* Forza tutto in minuscolo */
    text-transform: lowercase;
    letter-spacing: 3px;
    opacity: 0.7;
}

.line {
    width: 40px;
    height: 1px;
    background-color: #000;
    margin: 30px auto;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
}

footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Ottimizzazione per dispositivi mobili */
@media (max-width: 600px) {
    h1 { 
        font-size: 2.2rem; 
        letter-spacing: 2px; 
    }
    h3 { 
        font-size: 1.1rem; 
    }
}