
.nav{
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    z-index: 99;
}
.nav .logo{
    width: 200px;
}

/*MENU*/
.main-menu{
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #060606;
    transition: all 0.3s;
    z-index: 90;
    display: flex;
    flex-direction: column;
    padding: 250px 25px;
    overflow: auto;
}

.main-menu.active{
    top: 0;
}

.main-menu .menu-item{
    border-bottom: solid 1px white;
    font-size: 72px;
    color: white;
    font-family: 'Libre Baskerville', serif; 
}

.main-menu .menu-item:hover{
    color: var(--tone-color) !important;
}

@media screen and (max-width: 992px) {
	.main-menu .menu-item{
	    font-size: 50px;
	}
	.nav .logo{
	    width: 130px;
	}
}

@media screen and (max-height: 700px) {
	.main-menu{
	    padding: 180px 25px;
	}
		.main-menu .menu-item{
	    font-size: 40px;
	  
	}
}