body, html {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Previene lo scroll oltre il video */
        font-family: 'Montserrat', sans-serif;

}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1; /* Assicura che il video resti dietro il contenuto */
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover; /* Mantiene le proporzioni e copre l'intera area visibile */
}

.content {
    position: relative;
    z-index: 2; /* Assicura che il contenuto sia sopra il video */
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.logo {
    max-width: 100%;
    height: auto;
}

.social-links a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-size: 2em;
}

/* Media Query for tablets */
@media (max-width: 768px) {
    .social-links a {
        font-size: 1.5em;
        margin: 0 10px;
    }
}

/* Media Query for mobile devices */
@media (max-width: 480px) {
    .content h2, .content p {
        font-size: 0.8em;
    }

    .social-links a {
        font-size: 1.2em;
        margin: 0 5px;
    }
}
