@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap%27');
 
#AOBtitle
{
    color: white;
    font-size:30px;
    float: right;
    margin-top: 16px;
    margin-left:14px;
}
#AOBtitle k
{
    font-size:8px;
}
 
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body, html{
    height: 100%;
    background:black;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    font-family: 'Lato', sans-serif;
    background-color: black;
    text-transform: uppercase;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 50%;
}
 
.nav-links li{
    padding-top: 8px;
    padding-left: 8px;
    padding: 10px;
    list-style: none;
}
 
.nav-links a{
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

nav ul li ul{
    float: right;
}
 
nav ul li button{
    border: none;
    background: none;
}
 
nav ul li button a{
    font-family: 'Lato', sans-serif;
    transition: 0.25s linear;
}
 
nav ul li button a:hover{
    margin-bottom:60px;
    transition: 0.25s linear;
    color: #90EE90;
}
 
nav ul li ul{
    margin-left:-10px;
    position: absolute;
    background-color: black;
    display: none;
}
 
nav ul li ul li{
    margin: 15px;
    height: 30px;
    width: 100%;
}
nav ul li ul li a{
    padding-left: -2%;
    font-size: 12px;
    transition: 0.5s;
}
 
nav ul li ul li a:hover{
    margin-top:60px;
    transition: 0.25s;
    color: #90EE90;
}
 
nav ul li:hover > ul{
    transition: 0.25s linear;
    display: block;
}

nav ul li div button a{
    padding: 12px 32px;
    color: black;
    border: 1px solid white;
    transition: 0.75s background-position ease-in-out;
    background-size: 300%;
    background-image: linear-gradient(60deg, black, black, #39FF14, green);
    background-position: left;
}

nav ul li div button a:hover{
    transition: 0.75s;
    color: black;
    background-position: right;
}
 
.burger{
    display: none;
    cursor: pointer;
}
 
.burger div{
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px;
}
@media screen and (max-width: 2400px){
	body{
        overflow-x: hidden;
    }
    
    .nav-links a{
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
}
nav ul li div button a{
    padding: 10px 28px;
    color: black;
    border: 1px solid white;
    transition: 0.75s background-position ease-in-out;
    background-size: 300%;
    background-image: linear-gradient(60deg, black, black, #39FF14, green);
    background-position: left;
}
    
    .nav-links{
        width: 50%;
    }
    .session{
    margin-top: 3%;
    margin-left:5%; 
    width:800px;
    }
}
@media screen and (max-width: 1800px){
	body{
        overflow-x: hidden;
    }
    
    .nav-links a{
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
}
nav ul li div button a{
    padding: 10px 28px;
    color: black;
    border: 1px solid white;
    transition: 0.75s background-position ease-in-out;
    background-size: 300%;
    background-image: linear-gradient(60deg, black, black, #39FF14, green);
    background-position: left;
}
    
    .nav-links{
        width: 50%;
    }
    .session{
    margin-top: 3%;
    margin-left:5%; 
    width:800px;
    }
}
@media screen and (max-width: 1200px){
	body{
        overflow-x: hidden;
    }
    
    .nav-links{
        width: 50%;
    }
    nav ul li div button a{
        border: none;
        background: none;
    }
 
    nav ul li div button a:hover{
        color: white;
        background: none;
        border: none;
    }
    
    .nav-links{
    	position: fixed;
        right: 0px;
        height: 79vh;
        top: 8vh;
        background-color: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li{
        opacity: 0;
    }
 
    .burger{
        display: block;
    }
 
    nav ul li:hover > ul{
        transition: 0.25s linear;
        display: none;
    }
   .sessions{
    	width:300px;
    }
}

@media screen and (max-width: 390px){
	body{
		overflow-x: hidden;
	}
	
	#AOBtitle
{
    color: white;
    font-size:24px;
    float: right;
    margin-top: 16px;
    margin-left:6px;
}
#AOBtitle k
{
    font-size:8px;
}
    .nav-links{
        width: 50%;
    }
    
    nav ul li div button a{
        border: none;
        background: none;
    }
 
    nav ul li div button a:hover{
        color: white;
        background: none;
        border: none;
    }
    
    .nav-links{
        position: fixed;
        right: 0px;
        height: 79vh;
        top: 7vh;
        background-color: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li{
        opacity: 0;
    }
 
    .burger{
        display: block;
    }
 
    nav ul li:hover > ul{
        transition: 0.25s linear;
        display: none;
    }
    .sessions{
    	width:300px;
    }
}

.nav-active{
    transform: translateX(0%);
}

 
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }to{
        opacity: 1;
        transform: translateX(0px);
    }
}
 