@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

body {
    margin: 0;
    font-family: 'Lilita One', cursive;
}


#menu-icon {
    width: 30px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
    filter: brightness(0) saturate(100%) invert(41%) sepia(73%) saturate(2242%) hue-rotate(184deg) brightness(98%) contrast(95%);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
}


.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 1000;
}

.sidebar a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 18px;
    color: #e3e3e3;
    display: block;
    transition: 0.2s;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
}

.sidebar a:hover {
    background-color: #575757;
}

    
.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    display: none;
    z-index: 999;
}

#logout-btn:hover {
    color: red;
}

#leave-btn:hover {
    color: red;
}