body{
    background-color: #21252a;
}

.content{
    width: 70%;
    min-width: 1000px;
    margin-left: 15%;
    margin-right: 10%;
}

header{
    font-family:  -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    padding: 25px 10px 20px 10px;
    /* background-image: url("../img/header-bg.png");*/
    background-position: center;
    background-repeat: no-repeat;
}

.profile-details{
    text-align: center;
}

.profile-details i{
    margin-right: 5px;
} 

.portrait {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    overflow: hidden;
}

.portrait img {
    width: inherit;
    height: inherit;
}

.profile-details{
    display: block;
    padding: 5px 0px 5px 0px;
}

.profile-section{
    padding: 2px 0 2px 0;
    display: block;
    font-family: 'Segoe UI';
    font-size: 13px;
    color: rgba(255, 255, 255, 0.64);
}

.link-me a{
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 1px;
    border-radius: 3px;
    background-color:rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-align: center;
    overflow: hidden;
}

.link-me a i{
    margin-left: 2px;
    color: rgba(0,0,0,0.8);
}

.links{
    display: block;
    margin: 5px 0px 5px 0px;
}

.main{
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: inherit;
    overflow: hidden;
    letter-spacing: -1em;
}

.nav{
    padding: 0;
    margin: 0;
    display: block;
    width: inherit;
    list-style: none;
    height: 50px;
    background-color: #5a5a5a8c;
}

.nav li{
    display: block;
    float: left;
    width: 20%;
    height: auto;
    overflow: hidden;
}

.nav li a{
    display: inline-block;
    font-family:  -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    width: 100%;
    height: inherit;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: aliceblue;
}

.nav li a i{
    font-size: 30px;
    display: inline-block;
    margin: 0 5px 0 5px;
    color: aliceblue;
}

.nav li .sub-content{
    padding: 0;
    margin: 0;
    width:100%;
}

.content-title{
    display: block;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.content-section {
    display: inline-block;
    padding: 0;
    margin: 0;
    height: fit-content;
    vertical-align: top;
    letter-spacing: 0;
}

#projects-content{
    margin: 0 0 10px 400px;
}

footer{
    display: block;
    width: 100%;
    min-width: 800px;
    padding: 15px 0 0 0;
    height: 180px;
    text-align: center;
    font-family: 'Segoe UI';
    font-size: 10px;
    color: #c4c4c4;
    float: left;
    background-image: url(../img/frontpage.png);
    letter-spacing: 0 !important;
}

.compatible-browser{
    width: 20px;
}

@-webkit-keyframes shake{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}@keyframes shake{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.shake{
    -webkit-animation: shake 0.5s infinite;
    animation: shake 0.5s infinite;
}