/* 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: -apple-system, system-ui, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    background-color: #35424a; 

}
.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, .content .highlight{
    color: #e8491d;
    font-weight: bold;
}

header a:hover{
    color: #cccccc;
    font-weight: bold;
}

/* index-page */
#showcase{
    min-height: 700px; /*500 */
    background:url('../img/landingpage-index.jpg') no-repeat ;
    background-size: cover;
    background-color: #35424a; 
    background-position: center;
    text-align: center;
    color: #35424a;
}
.formulier{
    margin: auto;
    margin-top: 30px;
    min-height: 200px;
    width: 30%;
    color: #cccccc;
}

label{
    margin-left: -150px;
}
#form_container{
    margin-top: 20px;
}

.flex-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
}

.content {
    width: 300px;
    height: 400px;
    margin: auto;
    background-color: rgba(53, 66, 74, 0.8); 
    text-align: center;  
    color: #cccccc;
}
/*underconstuction Login-page*/
#showcase1{
    min-height: 700px; 
    background:url('../img/Elektromotor-scaled.webp') no-repeat ;
    background-size: cover;
    background-color: #35424a; 
    background-position: center;
    text-align: center;
    color: #35424a;
}


/*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;
    }
}





