body{
            background-color: #1a1a1a;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            margin: 0;
            padding: 0;
            max-width: 100%;
            overflow-y: auto;
            overflow-x: auto;   
        }
        /* Menu di navigazione */
        ul{
            list-style-type: none;
            margin: 0;
            padding: 0;
            background-color: #000;
            overflow: scroll;
        }
        li{
            float: left;
        }
        li a{
            display: block;
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
            font-family:'Montserrat', sans-serif;
        }
        li a:hover{
            background-color: rgb(251, 184, 2);
        }
        
        /* Contenuto principale */
        .content{
            padding: 20px;
        }
        h1{
            color: rgb(251, 184, 2);
            margin-top: 50px;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            padding: 5px;
        }
        p{
            color: white;
            text-align: center;
            font-size: 20px;
            font-family: 'Montserrat', sans-serif; /* Added semicolon */
            padding: 50px;
            max-width: 100%;
            margin: 20px;
            box-sizing: border-box;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }
        a{
            color: rgb(251, 184, 2);
            font-family: 'Montserrat', sans-serif;
            text-align: center;
            font-size: 17px;
            padding: 10px; /* Changed from 0px for better clickability */
            text-decoration: none;
            display: inline-block;
        }
        /* unvisited link */
        a:link{
            color: gold;
        }
        /* visited link */
        a:visited{
            color: rgb(255, 255, 255);
        }
        /* mouse over link */
        a:hover{
            color: white;
        }
        table{
            background-color: #000;
            font-family: 'Montserrat', sans-serif;
            border-collapse: collapse;
            width: 100%;
            max-width: 800px; /* Better control */
            margin: 50px auto; /* Center the table */
        }
        td, th{
            color: rgb(0, 0, 0);
            text-align: left;
            font-size: 10px;
            padding: 10px;
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }
        tr:nth-child(even){
            background-color: rgba(0, 0, 0, 0.668); /* Semi-transparent for dark theme */
        }
        tr:hover{
            background-color: rgba(0, 0, 0, 0.668);
        }
        td img{
            width: 400px;
            height: auto; /* Changed from fixed 300px to maintain aspect ratio */
            display: block;
        }
        caption{
            caption-side: top;
            font-display: block;
            font-size: 24px;
            font-weight: italic;
            margin-top: 10px;
            margin-bottom: 20px;
            color: white;
        }
    p{
        text-align: center;
        color: snow;
    }
    .clearfix{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    ::after {
            content: "";
            clear: both;
            display: table;
        }