/* Impostazioni di base e sfondo */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

body {
    background-image: url('../images/green.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Mantiene l'immagine fissa durante lo scroll */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenitore principale per il contenuto */
.content-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
    /* Sfondo scuro semitrasparente per leggibilità */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Stile per il logo */
.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
}

/* Stile per il testo principale */
.text-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.text-content p {
    margin: 10px 0;
}

header{font-size:32px;margin-bottom:12px;font-weight: bold;}

/* Stile per il footer con i dati societari */
footer {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Media query per schermi più piccoli (telefoni) */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 20px;margin:3%;
    }
    h1{font-size:20px;}
}