@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Raleway';
}
body {
    /* overflow: hidden; */
    position: relative;
    width: 100%;
    background-image: url('/images/TLOU2_Wallpaper2.png')
}
.sidebar {
    font-weight: 500;
    display: flex;
    position: fixed;
    /* justify-content: center; */
    flex-direction: column;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    background-color: rgba(11, 36, 71, 0.75);
    /* background-color: rgba(0,0,0,.8); */
    backdrop-filter: blur(10px);
    padding: 10px;
    z-index: 1;
    box-shadow: 0px 0px 10px rgba(0,0,0,50);
}
.sidebar .logo{
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    text-align: center;
}
.sidebar .logo .logo-edu{
    font-size: 30px;
    font-weight: 800;
}
.sidebar .logo .logo-nexa {
    /* margin-top: -20px; */
    letter-spacing: 4px;
}
.sidebar .nav-list{
    margin: auto 0;
}
.sidebar ul li {
    list-style: none;
    
}
.sidebar ul li a{
    width: 100%;
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    align-items: center;
    width: 100%;
    padding: 10px;
    color: #A5D7E8;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s ease;
}
.sidebar ul li a:hover {
    background-color: #fff;
    color: #0B2447;
    border-radius: 10px;

}
.sidebar ul li i {
    margin: 10px 20px;
}

@media (width <= 800px) {
    .sidebar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: s;
        margin: auto;
        height: 80px;
        width:100%;
    }
    .sidebar .logo {
        /* display: flex; */
        flex-direction: row;
        margin: auto 10px;
    }
    .sidebar .nav-list {
        display: flex;
        flex-direction: row;
    }
    .sidebar .nav-list .nav-link{
        display: none;
        /* width: 500px; */
    }
}
