/* global */
/* reset margin and padding to 0 */
    *::before, *::after{ 
    margin: 0;
    padding: 0;
}
html{
/* Include padding and border in the element's total width and height */
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    background-color: #f4f4f4;
    
}
.container{
    width:80%;
    margin:auto;
    overflow:hidden;
}

ul{
    margin: 0;
    padding: 0;
}

.dark{
    background: #35424a;
    color:#ffffff;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Header **/
header{
    background:#35424a;
    color:#ffffff;
    padding-top:30px;
    min-height:70px;
    border-bottom: #e8491d 3px solid;
}

header a{
    color:#ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header li{
    float: left;
    display: inline;
    padding: 0 20px 0 20px ;
}

header #branding{
    float: left;    
}

header #branding h1{
    margin: 0;
}

header nav{
    float:right;
    margin-top: 10px;
}

header .highlight, header .current a, .formulier label .highlight{
    color: #e8491d;
    font-weight: bold;
}

header a:hover{
    color: #cccccc;
    font-weight: bold;
}

/*showcase index-page */
#showcase{
    min-height: 500px;
    background:url('../img/landingpage-index.jpg') no-repeat ;
    background-size: cover;
    /* background-position-y: bottom; */
    text-align: center;
    color: #35424a;
}
.formulier{
    margin: auto;
    margin-top: 30px;
    min-height: 200px;
    width: 30%;
    color: #cccccc;
    background-color: #35424a; 
}
label{
    margin-left: -150px;
}
/*underconstuction Login-page*/
#underconstruction{
    min-height: 500px;
    background:url('../img/Under-Construction.png') no-repeat ;
    text-align: center;
    color: #e8491d;
}
  
/*Main About-page */
#main{
    min-height: 500px;
}

#showcase h1{
    margin-top: 100px;
    font-size: 55px;
    margin-bottom: 10px;
}

/* sidebar */
aside#sidebar{
    float:right;
    width: 30%;
    margin-top: 10px;
}

#sidebar h3{
    padding: 15px;
}

#sidebar p{
    padding: 15px;
}

/* main-col */
article#main-col{
    float:left;
    width: 65%;
}

footer{
    padding: 10px;
    border-top: #e8491d 3px solid;
    color: #ffffff;
    background-color: #35424a;
    text-align: center;   
}

footer .highlight{
    color: #e8491d;
    font-weight: bold;
}
/*media queries */
@media(max-width: 1150px){
    label{
        margin-left: -75px;
    }
    .formulier textarea{
        width: 170px;
    }
}

@media(max-width: 768px){
    header #branding, 
    header nav,
    header nav li{
        float: none;
        text-align: center;
        width: 100%;
    }
    header{
        padding-bottom: 20px;
    }
    #showcase h1{
        margin-top: 40px;
    }
    .formulier{
        width: 200px;
    }
    label{
    margin-left: -75px;
    }
    .formulier textarea{
        width: 170px;
    }
}





