/*-----------------------------------------------------------------------------
---------------------------------HTML Elements---------------------------------
-----------------------------------------------------------------------------*/
a {
    color: black !important;
    text-decoration: none !important;
}

body {
    display: flex;
    flex-direction: column;
}

html, body {
    height: 100%;
}

/*-----------------------------------------------------------------------------
----------------------------Header, Footer, Content Elements---------------------------
-----------------------------------------------------------------------------*/
.content {
    flex: 1 0 auto;
    padding: 20px;
}

#footer-block {
    background: linear-gradient(to top, transparent 50%, white), url('../../images/GL Wallpaper.png');
    flex-shrink: 0;
    padding: 20px;
    text-align: center;
}

#header-block {
    background: linear-gradient(to bottom, transparent 50%, white), url('../../images/GL Wallpaper.png');
    padding: 15px 0px 60px 0px;
    text-align: center;
}

#list-icon {
    color: black;
    font-size: 30px;
    height: 40px;
    left: 10px;
    position: absolute;
    top: 10px;
    transition: 0.5s;
    width: 40px;
    z-index: 3;
}

#social-links {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

#github:hover {
    color: #171515 !important;
}

#instagram:hover {
    color: #8a3ab9 !important;
}

#twitch:hover {
    color: #9146FF !important;
}

#twitter:hover {
    color: #1DA1F2 !important;
}

#youtube:hover {
    color: #C4302B !important;
}

/*-----------------------------------------------------------------------------
-------------------------------Sidebar Elements--------------------------------
-----------------------------------------------------------------------------*/
#coversheet {
    pointer-events: none;
    position: absolute;
    transition: 0.5s;
    z-index: 1;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

#sidebar {
    background-color: #111;
    height: 100%;
    left: 0;
    overflow-x: hidden;
    padding-top: 60px;
    position: fixed;
    top: 0;
    transition: 0.5s;
    width: 0%;
    z-index: 2;
}

#sidebar a {
    padding: 8px 8px 8px 32px;
    font-size: 25px;
    color: #e0e0e0 !important;
    display: block;
    width: 100%;
}

#sidebar a:hover {
    color: rgb(255, 103, 103);
}

/*-----------------------------------------------------------------------------
-----------------------------Mobile Device Styles------------------------------
-----------------------------------------------------------------------------*/
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 900px) {
    #header-block {
        padding: 15px 0px 30px 0px;
    }

    #header-image {
        width : 90%;
    }

    #list-icon {
        font-size: 20px;
    }

    #social-links {
        font-size: 75%;
    }
}
