body{
    margin:0;
    padding: 0;
    overflow-x: hidden;
    background-color: rgb(64, 64, 64);
    color: white;
    font-family: 'Montserrat', sans-serif; 
    scroll-behavior: smooth;
    overflow: hidden;
}
button{
    background: none; 
    border: none;
    color: #ffffff; 
    font-size: 16px; 
    cursor: pointer; 
    padding: 0; 
    text-align: left;
    z-index: 265
}
.canvas_container{
    position: relative;
    width: 100vw; 
    height: calc(94vh - 100px); 
    margin-bottom: 50px;
    z-index: 1;
}
canvas{
    width: 100%;
    height: 100%;
}
.headline-container{
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    align-content: center;
    pointer-events: none;
    width: 100%;
    position: relative; 
    padding: 0;
    margin: 0;
    
}
#fronte, #retro, #mezzo{
    font-family: 'roboto', sans-serif;
    position: absolute;
    text-align: center;
    font-size: clamp(10px, 30vw, 300px);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 10px;
    line-height: 0.8;
    color: white;
    transform: translate(-50%, 50%);
}
#retro{
    z-index: 1;
}
#mezzo{
    z-index: 0;
    filter: blur(20px);
    -webkit-filter: blur(20px);
    color: rgb(69, 186, 235);
}
#fronte{
    color: transparent;
    -webkit-text-stroke: 2px rgb(46, 136, 246);
    opacity: 0.3;
    z-index: 2;
}

.button_div{
    display: flex;
    justify-content: flex-end;
    padding-bottom: 1rem;
    padding-right: 5rem;
    z-index: 256;
}


    
@media (max-width: 768px) {
    .header {
        /* flex-direction: column; 
        align-items: flex-start; 
        padding: 1rem;  */
        display: none;
    }

 

    .header i {
        margin-bottom: 0.5rem; /* Aggiungi spazio sotto l'icona */
    }
    #fronte, #retro, #mezzo{
        font-size: 20vw;
        transform: translate(-50%, 140%);
    }
}