/* Impostazioni generali */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* La Barra Superiore */
.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 15px 0;
    position: fixed; /* Rimane in alto durante lo scroll */
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 9999;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #3498db;
}

/* Area del contenuto */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

table { 
    width:100%; 
    border-collapse: collapse; } 
    
td { padding: 10px; /* niente bordo */ border: none; } /* testo centrato nella prima riga */

tr:first-child td { text-align: center; vertical-align: middle; font-weight: bold; } /* immagini centrate nella seconda riga */

tr:nth-child(2) td { text-align: center; vertical-align: middle; }

img { max-width: 80px; /* modifica a piacere */ height: auto; }

homepage {
    background-image: url("dna3d.png"); /* percorso del tuo file */
    background-size: cover;       /* l'immagine copre tutta la pagina */
    background-position: center;  /* centrata */
    background-repeat: no-repeat; /* evita ripetizioni */
    height: 100vh;                /* assicura che copra tutta l'altezza */
}
  