/********* SOLARIZED HEX CODES ********/
:root{
    --base03: #002b36;
    --base02: #073642;
    --base01: #586e75;
    --base00: #657b83;
    --base0: #839496;
    --base1: #93a1a1;
    --base2: #eee8d5;
    --base3: #fdf6e3;
    --yellow: #b58900;
    --orange: #cb4b16;
    --red: #dc322f;
    --magenta: #d33682;
    --violet: #6c71c4;
    --blue: #268bd2;
    --cyan: #2aa198;
    --green: #859900;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
}

body{
    min-height: 100%;
}

html{
    height: 100%;
    background-color: var(--base02);
    -webkit-transition: 1s;
    transition: 1s;
}

/********** NAV **********/
ul{
    background-color: var(--blue);
    padding-top: 8px;
    padding-bottom: 8px;
    position: fixed;
    top: 0;
    width: 100%;
}

#mainTab{
    border: 2px solid var(--cyan);
}

ul li{
    display: inline-block;
    padding: 10px 25px 10px 25px;
    margin: 10px;
    color: white;
    font-size: 20px;
    border: 2px solid var(--cyan);
}

#home h1{
    padding-top: 20px;
    font-size: 40px;
    text-align: center;
}

#toggleButton{
    border: none;
    position: absolute;
    right: 15px;
    top: 17px;
    margin: 10px;
    font-size: 25px;
    color: white;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#toggleButton:hover{
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/******* BODY *********/
#mainDiv{
    margin-left: 25%;
    margin-top: 8%;
}

#projects{
    display: inline;
}

#nothingness {
    color: var(--blue);
    margin-bottom: 5px;
}

#projects h2{
    margin: 10px 0 10px 30px;
    font-size: 30px;
    color: var(--green);
}

#projects h3{
    color: var(--orange);
    margin: 10px 0 10px 40px;
    font-size: 25px;
}

#projects h4{
    margin: 5px 0px 0px 50px;
    font-size: 25px;
    color: var(--cyan);
    padding: 5px;
}

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

a:hover{
    color: var(--violet);
    transition: all 0.5s;
}

#about{
    margin-top: 50px;
    padding: 10px 0 10px 0;
}

#contact{
    margin-top: 50px;
    padding: 10px 0 10px 0;
    margin-bottom: 20px;
}

#about h1, #contact h1{
    font-size: 30px;
    color: var(--blue);
    padding-bottom: 15px;
}

#about h2, #contact h2{
    font-size: 25px;
    color: var(--cyan);
    margin-left: 30px;
    margin-right: 400px;
    padding: 10px;
}

#contact h2 i{
    padding: 10px;
    margin: 0px 5px 0px 5px;
}

#footer{
    margin: 0;
    padding: 10px;
}