/* Reset di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

header h1 {
    font-size: 2.5rem;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

/* Stile per l'immagine e l'overlay del titolo */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay semitrasparente */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative; /* Per posizionare l'overlay */
}

section .image-overlay h2 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

section p, section ul {
    margin-bottom: 1rem;
}

section ul {
    list-style-type: disc;
    margin-left: 2rem;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Media query per responsive design */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }
    main {
        padding: 1rem;
    }
    section .image-overlay h2 {
        font-size: 1.5rem;
    }
}