body {
    margin: 0;
    background-color: #0f0f0f;
}
@font-face {
    font-family: 'GODOFWAR';
    src: url('fonts/GODOFWAR.TTF') format('truetype'),
         url('fonts/GODOFWAR.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
}
.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.sidebar {
    width: 250px;
    height: 100%;
	font-family: 'GODOFWAR';
    background-color: #0f0f0f;
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    left: -250px;
    transition: 0.2s;
    padding-top: 60px;
    z-index: 3;
}

.sidebar a {
    padding: 15px 15px 15px 25px;
    text-decoration: none;
    font-size: 18px;
    color: #f1f1f1;
    display: flex;
    align-items: center;
    transition: background-color 0.2s, border-radius 0.2s;
    border-radius: 8px;
    margin-bottom: 10px;
    width: 90%;
    box-sizing: border-box;
}

.sidebar a i {
    margin-right: 20px;
}

.sidebar a:hover {
    background-color: #212121;
}

.sidebar img {
    height: 36px;
    margin-right: 5px;
}

.open-btn {
	font-family: 'GODOFWAR';
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-content: center;
    font-size: 20px;
    font-weight: 10;
    cursor: pointer;
	background-color: hsla(0,0%,0%,0.00);
    color: white;
    border: none;
    padding: 10px 10px;
    z-index: 4;}

.menu-icon:hover {
    background-color: #212121;
}

.menu-icon:active {
    background-color: #777;
}

.menu-icon {
    padding: 5px 10px;
    border-radius: 50%;
    background-color: #0f0f0f;
    display: inline-block;
    transition: background-color 0.2s;
}