body {
    margin: 0 auto;
    background-image: url(img/Background@0.5.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

/*------------------- NAVIGATION STYLES -------------------*/

.nav {
    top: 0%;
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #c63529;
    transition: top 0.2s linear;
    z-index: 9;
    font-family: 'Orbitron', sans-serif;
}

.vis {
    top: 100%;
    transition: top 0.2s linear;
}

.navbar {
    margin: 0 auto;
    padding: 0;
}

.nav-row {
    list-style: none;
    width: 100%;
    height: 15vh;
    line-height: 15vh;
    font-size: 2.0em;
}

.links {
    color: #1c1c1c;
    text-decoration: none;
}

.nav-row:nth-child(even) {
    background-color: #e9e9e9;
}

.nav-overlay {
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: 10;
}

.nav-overlay img {
    display: block;
    margin: 0 auto;
    padding: 5px;
    width: 32px;
    z-index: 10;
    background-color: rgba(245, 245, 245, 0.7);
    border: 2px dashed rgba(15, 15, 15, 0.8);
    border-radius: 50%;
}

/*------------------- CONTENT STYLES -------------------*/

.bar {
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    padding: 0;
    z-index: 8;
    background-color: #fefefe;
}

.logo,
.logo-2 {
    position: absolute;
    width: 100px;
    height: 70px;
    background-image: url("img/sq-team.svg");
    background-repeat: no-repeat;
    top: 50%;
    left: 10px;
    margin-top: -25px;
}

.container {
    position: relative;
    display: block;
}

.section-box {
    display: block;
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 30px;
}

.section-content {
    position: relative;
    margin-top: 95px;
}

.home-welcome {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
}

.title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
}

.section-box:nth-child(odd) .title {
    color: #f1f1f1;
}

.home-content {
    position: relative;
    margin-top: 70px;
}

.home {
    display: inline-block;
    font-size: 32px;
    margin-bottom: 5%;
}

.hometron {
    width: 100%;
    height: 50%;
}

.background {
    display: inline-block;
    background-color: #AD002B;
}

.background .section-content {
    padding: 0 15px;
}

.indent {
    padding-left: 30px;
}

.bio {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 0.95em;
    width: 100%;
    overflow: auto;
}

.portrait {
    display: inline-block;
    width: 35%;
    height: 60%;
    background-color: #0f0f0f;
}

.portrait-img {
    width: 35%;
    height: 100%;
    float: left;
    margin: 10px;
    background-color: #0f0f0f;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.timeline {
    display: inline-block;
    background-color: #168BE5;
    color: #0f0f0f;
}

.timeline-img {
    display: block;
    width: 80%;
    margin: auto;
    z-index: 7;
}

.future {
    display: inline-block;
    background-color: #BEAA00;
}

.future-text {
    display: block;
    float: right;
    font-family: 'Alegreya Sans', sans-serif;
    padding: 10px;
}

.future-text p {
    font-size: 0.9em;
}

.future-img {
    width: 90%;
    padding: 15px;
    margin: 0 auto;
}

.quote span {
    color: #cd5328;
}

@media screen and (min-width: 1024px) {
    .nav {
        position: fixed;
        height: 50px;
        overflow: hidden;
        font-size: 18px;
        border-radius: 3px;
        width: 100%;
        margin: 0 auto;
    }

    .navbar {
        margin: 0;
        padding: 0 10px;
    }

    .nav-row {
        display: inline-block;
        width: 20%;
        height: 100%;
        line-height: 50px;
        font-size: 1.0em;
    }

    .links {
        padding: 10px;
        margin: 0 10px;
        color: #1c1c1c;
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
    }

    .vis {
        top: 0;
    }

    .container {
        position: relative;
        display: block;
        width: 70%;
        margin: 50px auto;
    }

    .section-box {
        display: block;
        width: 70%;
        height: 100%;
        margin: 0 auto;
    }

    .title {
        text-align: center;
        font-family: 'Passion One', cursive;
        font-size: 3.5em;
        padding: 50px 0;
        margin: 0;
    }

    .home-content {
        position: relative;
        margin-top: 50px;
        padding-top: 50px;
    }

    .section-content {
        position: relative;
        margin: 0;
    }

    .hometron {
        display: block;
        width: 80%;
        height: 50%;
        margin: 0 auto;
    }

    .bio {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 1.1em;
        width: 100%;
        overflow: auto;
    }

    .timeline-img {
        display: block;
        width: 60%;
        margin: 0 auto;
    }

    .future-text p {
        font-size: 1.1em;
    }

    .bar {
        visibility: hidden;
    }

    .nav-overlay {
        visibility: hidden;
    }
}