nav {
    position: fixed;
    width: 0;
}

#link_buttons {
    position: relative;
    top: 20px;
    padding: 0;
    transform: translate(-270px, 0);
}

#link_buttons a {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    text-decoration: none;
    display: block;
}

#link_buttons li {
    display: block;
    margin: 5px;
    background: #000000;
    width: 300px;
    text-align: right;
    padding: 10px;
    border-radius: 0 30px 30px 0;
    transition: all 1s;
}

#link_buttons li:hover {
    transform: translate(110px, 0);
    background: #ffffff;
}

#link_buttons li:hover a {
    color: #000;
}

#link_buttons li:hover i {
    color: #fff;
    background: red;
    transform: rotate(360deg);
    transition: all 1s;
}

#link_buttons li i {
    margin-left: 10px;
    color: #000;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 20px;
    transform: rotate(0deg);
}

#sidenav {
    height: 100%;
    width: 350px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: -350px;
    background-color: #111;
    padding-top: 60px;
    transition: 0.5s;
    overflow: hidden;
}

#sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

#sidenav a:hover, .offcanvas a:focus {
    color: #f1f1f1;
}

#sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.github-link-logo {
	display: flex;
}

.github-link-logo .fa-github {
	font-size: 40px;
	alignment-baseline: center;
}

@media screen and (max-height: 450px) {
    #sidenav {
        padding-top: 15px;
    }

    #sidenav a {
        font-size: 18px;
    }
}

.category_sidenav {
    color: #cdcdcd;
    font-size: 25px;
    font-weight: bold;
}

.project_sidenav {
    color: #818181;
    font-size: 20px;
}