/**
* =================================================================== 
*  ------------------------------------------------------------------
*  Sander Lambrechts CSS
*  ------------------------------------------------------------------
* =================================================================== 
*/

body, html {
    width: 100%;
    height: 100%;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: url(../img/maintance.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.overlay {
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    background-size: auto 100%;
    -o-background-size: auto 100%;
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.container {
    text-align: center;
    color: #f8f8f8;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.intro-message {
    position: relative;
    margin: auto;
    padding: 10%;

}

.intro-message > h1 {
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    font-size: 3em;
}

.intro-divider {
    width: 100%;
    border-top: 1px solid #f8f8f8;
    border-bottom: 1px solid dimgrey;
}

.intro-message > h2, .intro-message > h3 {
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.intro-message > h2 {
    font-size: 2em;
    line-height: 1.625;
    color: #F37D7D;
}

.intro-message > h3 {
    font-size: 1.5em;
    line-height: 1.625;
}

.intro-footer {
    font-size: 1em;
    text-align: center;
}

.intro-footer .text-muted {
    color: #f5f5f5;
    font-weight: normal;
}

.network-name {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
}

footer {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.intro-social-buttons {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding: 0;
    margin: 20px;
}

ol.intro-social-buttons, ul.intro-social-buttons {
    list-style-type: none;
}

ul.intro-social-buttons > li {
    margin: 20px;
}

ul.intro-social-buttons > li:last-child {}
.btn-default {
    color: grey;
}

@media (min-width:769px) {
    .site,
    .overlay {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
    }
    .intro-divider {
        width: 80%;
        border-top: 1px solid #f8f8f8;
        border-bottom: 1px solid dimgrey;
    }
    .intro-message > h1 {
        font-size: 5em;
    }
    .intro-social-buttons {
        flex-direction: row;
    }
    ul.intro-social-buttons > li {
        margin-bottom: 20px;
        padding: 0;
    }
}