/***** Primary styling for the site. *****/
/* Blue #3E9CFF */

/** Generic Components **/
.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* Headings */
h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 4px;
}

h1 {
    margin-top: 0;
    margin-bottom: 2px;
    font-size: 240%;
}

h2 {
    font-size: 200%;
    text-align: center;
}

h3 {
    font-size: 120%;
}

h1:after,
h2:after {
    display: block;
    height: 2px;
    background-color: #3E9CFF;
    content: " ";
    margin: 0 auto;
    margin-top: 10px;
}

h1:after {
    width: 300px;
    margin-bottom: 10px;
}

h2:after {
    width: 200px;
}

/* Links */
a:link,
a:visited {
    color: #3E9CFF;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

a:hover,
a:active {
    color: #555555;
    border-bottom: 1px solid #3E9CFF;
}


/** Core Site **/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #FFFFFF;
    color: #555555;
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}


/** Header **/
header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/codingScreens.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.header-content {
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.header-content p {
    font-size: 130%;
}

/* Navigation */
.main-nav {
    float: right;
    list-style: none;
    margin-top: 20px;
}

.main-nav li {
    display: inline-block;
    margin-left: 20px;
}

.main-nav .back-to-top {
    display: none;
}

.main-nav li a:link,
.main-nav li a:visited {
    color: #FFFFFF;
}

/* Sticky Nav */
.sticky-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding-bottom: 1%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
}

.sticky-nav .back-to-top {
    display: inline-block;
}

.sticky-nav ul {
    margin-top: 10px;
}

.sticky-nav li a:link,
.sticky-nav li a:visited {
    color: #555555;
}


/** About **/
.section-about strong {
    font-weight: bold;
}
.about-details {
    margin-top: 45px;
    transform: translate(50%, 0);
}

.about-text {
    margin-top: 45px;
}

.about-picture {
    margin-top: 45px;
    transform: translate(10%, 0);
}


/** Experience **/
.section-experience {
    background-color: #E8E8E8;
}

.section-experience p {
    font-size: 80%;
    width: 75%;
    line-height: 125%;
}

.section-experience h3 {
    margin-top: 2%;
    margin-bottom: 1%;
    text-align: center;
}

.tech-header {
    margin-top: 1%;
}


/** Footer **/

footer {
    background-color: #676767;
    font-size: 80%;
    padding: 40px;
}

footer a:link,
footer a:visited {
    color: #FFFFFF;
}

footer p {
    color: #FFFFFF;
    text-align: center;
}

.footer-nav {
    list-style: none;
    float: left;
    transform: translate(0, 40%);
}

.social-media {
    list-style: none;
    float: right;
    padding-right: 10%;
}

.footer-nav li,
.social-media li {
    display: inline-block;
    margin: 0 20px;
}

.social-media li a {
    font-size: 160%;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.logo-github:hover {
    color: #4078C0;
}

.logo-bitbucket:hover {
    color: #0052CC;
}

.logo-linkedin:hover {
    color: #007BB5
}

