* {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body{
    margin: 0;
    background: #f8f8f8;
}
.profilepic {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
    border-radius: 50%;
    border: 3px solid black;
}
.center {
    text-align: center;
}
#logo {
    background-image: url("/images/logo.png");
    width: 64px;
    height: 64px;
    margin: 20px;
    color: black;
    float: left;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#logo:hover {
    -webkit-transform: scale(1.08) rotate(-15deg) translate(0, 0) skew(0deg, 0deg);
    -moz-transform: scale(1.08) rotate(-15deg) translate(0, 0) skew(0deg, 0deg);
    -o-transform: scale(1.08) rotate(-15deg) translate(0, 0) skew(0deg, 0deg);
    transform: scale(1.08) rotate(-15deg) translate(0, 0) skew(0deg, 0deg); }
#me {
    background: url("/images/background.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-attachment: fixed;
    display: block;
    padding: 12em 0;
    margin: 0;
    clear: both;
    color: white;
}
#name {
    letter-spacing: 3px;
    margin: 10px;
    font-size: 6vw;

}
#description{
    font-size: 3vw;
    letter-spacing: 1px;
}
#tabs {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    float: right;
}
.headerBG{
    background-color: white;
    border-radius: 0px 0px 25px 25px;
    border-style: solid;
    border-color: black;
    border-width: 3px;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, border-width 0.2s ease-in-out;
}
li{
    list-style-type: none;
    float: left;
}
header {
    top: 0;
    position: fixed;
    width: 100%;
}
.tab {
    display: block;
    padding: 0.5em 1.5em 0.5em 1.5em;
    margin-top: 0.5em;
    font-size: 1.5vw;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: white;   
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.tabBG{
    display: block;
    padding: 0.5em 1.5em 0.5em 1.5em;
    margin-top: 0.5em;
    font-size: 1.5vw;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.tab:hover {
    border-bottom: 4px solid white;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.tabBG:hover {
    color: gray;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.page-wrap {
    width: 90%;
    margin: 0 auto;
}
.title {
    font-size: 4vw;
    color: #424242;
    margin: 3%;
}
.project {
    overflow:hidden;
    border: 2px solid black;
    background-color: white;
    color:#424242;
    margin-bottom: 2%;
}
.projectimg {
    width: calc(50% - 20px);
    float: left;
    margin: 10px;
}
.projecttitle {
    font-size: 3vw;
    text-align: center;
}
.projectdescription {
    display: block;
    width: calc(50% - 40px);
    height: calc(100% - 40px);
    float: left;
    font-size: 1.85vw;
    margin: 20px;
    text-align: center;
}
.contact {
    display: block;
    padding: 0.5em 1.5em 0.5em 1.5em;
    margin-top: 0em;
    font-size: 2vw;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
}
.contact:hover{
    border-bottom: 4px solid white;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#contactlist {
    display:block;
    margin-left:auto;
    margin-right:auto;
    padding:0;
    float:left;
    width: 100%;
}