html, body{
    background: rgb(253, 253, 253);
    margin: 0;
    padding: 0;
    font-family: Arial;
    font-family: 'Raleway', sans-serif;
}

a{
    color: inherit;
    text-decoration: none;
    outline: none;
}

section{

}

section[data-layout="static"]{
    padding-top: 100px;
}

.content{
    width: 1000px;
    max-width: calc(100% - 40px);
    min-width: 800px;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

header{
    position: fixed;
    z-index: 100;
    background: #363E45;
    height: 100px;
    width: 100%;
}

header nav{
    color: #fff;
    height: 100%;
    width: 100%;
}

header nav ul{
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    vertical-align: middle;
}

header nav ul li{
    float: left;
    margin: 0px 20px;
    padding: 0 0 15px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

header nav ul li[data-active="true"],
header nav ul li:hover{
    border-bottom-color: #fff;
}

header nav #header_socialmedia_buttons{
    color: #fff;
    float: right;
    font-size: 19px;
    height: 100%;
    display: flex;
    justify-content: space-around; 
    align-items: center;
}

header nav #header_socialmedia_buttons a{
    margin: 10px;
    padding: 10px;
}


main{
    min-height: calc(100vh - 100px);
}


footer{
    background: #363E45;
    height: 100px;
    width: 100%;
    color: #fff;
    line-height: 100px;
    font-size: 12px;
}

footer span:last-of-type{
    float: right;
}

footer span > a{
    margin: 0 8px;
}

footer span > a:last-of-type{
    margin-right: 0;
}


@media screen and (max-width: 1000px) {
  
    .content{
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        margin: 0 20px;
    }

    footer span{
        padding: 0 10px;
    }
}

@media screen and (max-width: 700px) {

    header, footer{
        height: 75px;
    }

    header nav ul li{
        padding-bottom: 5px;
    }

    footer{
        line-height: 75px;
    }

    header nav ul li{
        margin: 0 10px;
    }

    header nav ul li:first-of-type{
        margin-left: 30px;
    }

}

@media screen and (max-width: 600px) {
    header nav #header_socialmedia_buttons{
        display: none;
    }

    header nav ul li{
        margin: 0 20px;
    }
}

@media screen and (max-width: 500px) {
    header nav ul li{
        margin: 0 10px;
    }
}