body {
    color: #ffffff;
    font-family: 'Oxygen', sans-serif;
}

h1 {
    font-weight: 300;
    font-size: 1.2em;
}

h2 {
    font-weight: 300;
}

h3 {
    font-weight: 300;
}

h4 {
    font-weight: 300;
}

a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    color: #ffffff;
    text-decoration: none;
}

a:visited {
    color: #ffffff;
}

ul a {
    text-decoration: none;
}

ul a:hover {
    text-decoration: underline;
}

#container {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
}

#overlay {
}

.main {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heading-box {
    width: 100%;
    height: 7vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 70vh;
    padding-top: 5%;
}

.heading-icon {
    height: inherit;
    min-height: 7vh; /* this fixes a bug in firefox that caused the image to disappear above the 992px breakpoint */
    padding-left: 5%;
}

/* .heading-text {
    display: block;
} */

.nav-box {
    width: 100%;
}

.navs-mobile {
    display: flex;
    flex-direction: row;
    padding: 0;
}

.navs-mobile > li {
    flex: 1;
    list-style-type: none;
    text-align: center;
    font-size: 1.2em;
}

.navs-desktop {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 0 5%;
}

.navs-desktop > li {
    flex: 1;
    list-style-type: none;
    text-align: center;
    font-size: 1em;
    padding: 2vh 0;
}

.slider {
    position: absolute;
    top: 40vh;
    left: 50px;
    width: 24px;
    height: 200px;
}

.bar {
    position: absolute;
    height: 100%;
    width: 4px;
    margin-left: 10px;
    border-radius: 2px;
    background-color: #888888;
}

.handle {
    position: relative;
    background-color: #000000;
    height: 24px;
    width: 24px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-sizing: border-box;
    cursor: ns-resize;
}

.gradient {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5% 5%;
    background: rgba(0,0,0,0.8);
}

.divider {
    width: 40%;
    border-top: 2px solid #ffffff;
    margin: 9vh 0;
}

.section {

}

.about, .cv, .earth {

}

.subheading-box {

}

.content {

}

.large {
    font-size: 1.3em;
    text-align: center;
}

.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 3em;
}

.social-icons > a {
    margin: 0 0.5em;
}

.social-icon {
    height: 32px;
    padding: 1em;
}

.item {
    margin-top: 3em;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8em;
    margin-top: 9vh;
}

@media (min-width: 992px) {

    h2 {
        font-size: 1.5em;
    }

    .heading-box {
        margin-bottom: 75vh;
    }

    .navs-mobile {
        display: none;
    }

    .navs-desktop {
        display: flex;
    }

    .divider {
        margin: 15vh 0;
    }

    .large {
        font-size: 1.5em;
    }

    .gradient {
        padding-left: 10%;
        padding-right: 10%;
    }

}

@media (min-width: 1200px) {

    .navs-desktop > li {
        font-size: 1.2em;
    }

    .gradient {
        padding-left: 15%;
        padding-right: 15%;
    }

}
