@charset "UTF-8";
html,
body {
    margin: 0;
    padding: 0;
    font-family: "proxima-nova", sans-serif;
}

body {
    width: 100%;
    height: 100%;
    background-image: url(img/stars.png);
    background-size: 1100px;
    background-position: 0px 0px;
    animation: animatedBackground 60s linear infinite;
    -moz-animation: animatedBackground 60s linear infinite;
    -webkit-animation: animatedBackground 60s linear infinite;
    -ms-animation: animatedBackground 60s linear infinite;
    -o-animation: animatedBackground 60s linear infinite;
}

body.minimal {
    width: 100%;
    height: 100%;
    background: none;
}

@media (min-width: 1200px) {
    .wrap {
        max-width: 950px;
    }
}

header {
    height: 300px;
}

section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: white;
}

img {
    max-width: 90%;
}

#intro {
    background-image: url(img/scheef4.png);
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: bottom;
    min-height: 250px;
    z-index: 400;
    position: relative;
    background-color: transparent;
}

.navbar-brand,
nav {
    font-size: 15px;
    font-weight: bold;
}

header h3,
footer h3 {
    font-weight: bold;
    letter-spacing: 0.04em;
}

#planet {
    position: absolute;
    width: 400px;
    top: 250px;
    left: 5%;
    z-index: 0;
}

#sub {
    background-color: white;
    min-height: 400px;
    position: relative;
}

p,
ul li {
    font-size: 18px;
}

section h1,
section h2,
section h3,
section h4 {
    text-transform: uppercase;
    font-weight: bold;
    line-height: 32px;
}

section h1,
section h2 {
    font-size: 1.6rem;
}

section h1 {
    margin-top: 25px;
}

h2 {
    margin-top: 50px;
}

.body h3 {
    margin-top: 20px;
    margin-bottom: 0;
}

section h3 {
    font-size: 1.2rem;
}

section h5 {
    font-size: 1.2rem;
    color: #5b76ee;
}

em {
    font-style: normal;
    color: #5b76ee;
}

a {
    color: #5b76ee;
}

#main {
    max-width: 950px;
    margin: 0 auto;
    margin-top: 80px;
}

#main.fadein {
    opacity: 1;
    transition: 1s opacity;
}

.index {
    padding-top: 25px;
}

@keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -300px -100px;
    }
}

@-moz-keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -300px -100px;
    }
}

@-webkit-keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -300px -100px;
    }
}

@-ms-keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -300px -100px;
    }
}

@-o-keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -300px -100px;
    }
}


/* minimal */

header.minimal {
    height: 55px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #5b76ee;
    padding: 3px;
    z-index: 100;
}

section.minimal {
    height: 100%;
    margin-top: 55px;
    padding-top: 0px;
    padding-bottom: 0;
    margin-bottom: 0;
}

nav.minimal {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
}

.alert-danger {
    background-color: transparent;
    border: 1px solid crimson;
    color: black;
    text-align: center;
}

.footer-content {
    position: absolute;
    width: 100%;
    padding-top: 250px;
    padding-bottom: 50px;
}

code.language-yaml,
code.language-json {
    border-radius: 4px;
    padding: 20px !important;
    margin: 20px;
}

@media only screen and (max-width: 1000px) {
    nav.minimal {
        padding-top: 6px;
    }
    #publish,
    #published {
        margin-top: -20px;
    }
    #logo,
    .navbar-brand {
        margin-top: -42px;
    }
    #side {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    #main {
        width: 90%;
        max-width: 90%;
    }
    #planet {
        top: 300px;
    }
    header {
        height: 350px;
        text-align: center;
    }
    .txt {
        order: 2;
        text-align: center;
    }
    .img {
        margin-bottom: 30px;
        order: 1;
    }
    section {
        padding-top: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
    .btn-label {
        display: none;
    }
}