*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-weight: 	1200;
}

html {
    scroll-behavior: smooth;
    background: #353b48;
  }



h1{ 
    font-size: 3rem;
    color: white;
    font-family: "Bodoni Moda", serif;
}
a{
    text-decoration: none;
    color: white;
}
.menu-laterale{ 
    width: 450px;
    height: 100vh;
    position: absolute;
    background: #2f3640;
    top: 0;
    left: 0;
    position: fixed;
    -webkit-box-shadow: 7px 2px 32px 5px #2F3640; 
box-shadow: 7px 2px 32px 5px #2F3640;
}
.titoli-pagine{ 
    width: 100%;
    height: 87vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #2f3640;
    overflow-x: auto;
    overflow-y: auto;
}
.titoli-laterali{  
    text-decoration: none;
    color: white;
    transition: 0.3s;
    border-top: 2vh solid #2f3640;
    background-color: #2f3640;
    top: 0;
}

.titoli-laterali h1{
    font-size: 2.5rem;
    background-color: #2f3640;
}
.titoli-laterali:hover{
    color: antiquewhite;
    text-decoration: underline;
    margin-left: 4%;
}
.contenuto{ 
    width: 100%;
    z-index: 0;
}

.cont-sfondo{
    width: 100%;
    height: 540px;
    background-image: url('../immagini/sfondo-principale-1.png');
    display: flex;
    justify-content: center;
    align-items: center;
}

.alto{
    width: 100%;
    height: 13vh;
    font-size: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: .5vh solid white;
}

.contenuto{
    display: flex;
    justify-content: center;
}

.testo-contenuto{
    position: absolute;
    margin-top: 600px;
    width: 50%;
    height: 100vh;
    color:white;
    line-height: 1.6;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
}


#titolo-uno{
    color: antiquewhite;
    text-decoration: underline;
    margin-left: 4%;
}

#tasto-menu{
    position: absolute;
    color: white;
    padding: 10px;
    background-color: #2f3640;
    margin-left: 100%;
    text-decoration: none;
    writing-mode: vertical-lr;
    text-orientation: upright;
    -webkit-box-shadow: 7px 2px 32px 5px #2F3640; 
box-shadow: 7px 2px 32px 5px #2F3640;

}

#generale{
    z-index: 5;
    transition: 2s;
}

#generale.active{
    transform: translateX(-100%);
    transition: 2s;
}

.nome{
    font-size: 7rem;

}


@media only screen and (max-width: 900px){
    .cont-sfondo{
        background-size: 1800px;
        background-position: -100px -30px;
    }
    .nome{
        font-size: 3rem;
    }
    .testo-contenuto{
        font-size: 16px;
        width: 80%;
        height: 1400px;
    }
    .menu-laterale{
        font-size: 15px;
        width: 90%;
    }

    .menu-laterale h1{
        font-size: 30px;
    }
    .alto{
        height: 7vh;
    }
}
