body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
}

.background-image, .logo {
    position: absolute;
    background-repeat: no-repeat;
}

.background-image{
    background-image: url('assets/foto\ snow\ Cabiatex\ sito.jpg');
    background-size: 100% 100%;
    background-position: top;
    background-attachment: fixed;
    
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    z-index: 1;

    pointer-events: none;
}

.scroll{
    position: relative;
}

.logo{
    background-size: contain;
    
    top: 2.5%;
    right: 3%;
    width: 25%;
    height: auto;
    /* height: calc(0.5367 * 100vw); */
    /* max-height: 25%; */
    /* padding: 100%; */

    z-index: 2;
}

.menu-placeholder{
    position: relative;
    z-index: 2;
}

.social-icons {
    position: fixed;
    bottom: 20px;   /* Distance from the bottom of the page */
    right: 3%;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    z-index: 1000;
}

.social-icons a {
    text-decoration: none;
    color: #0027bb;  /* Default color */
    font-size: 4rem;  /* Icon size */
}

.orbitron-font {
    font-family: "Orbitron", sans-serif, monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

ul {
    list-style: none;
}

@media only screen and (max-width: 600px) {
    .logo{
        right: 20%;
    }

    .background-image{
        background-size: cover;
        background-position: 65%;
    }
    .orbitron-font {
        font-family: "Orbitron", sans-serif, monospace;
        font-optical-sizing: auto;
        font-weight: 900;
        font-style: normal;
    }
}