/* General styling from old website: */
a, button{
    font-family: "Ubuntu Sans", sans-serif;
    font-weight: 400;
}

body, div{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

/* Website colors */
:root{
    --red-primary: #9c2117;
    --black: black;
    --white: #ffffff;
    --grey-text: #555555;
    --card-spacing: 40px;
}

body{
    background-image: url('../images/vrachtwagen.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    pointer-events: none;
    z-index: -1;
}

article{
    min-height: 50vh;
    background-color: white;
    width: 100%;
}

h1 {
	width: 100%;
	font-size: 50px;
	line-height: 35px;
}

h2 {
	width: 100%;
	font-size: 30px;
}

h3 {
	width: 100%;
	font-size: 25px;
	line-height: 25px;
	text-transform: uppercase;
}

h4 {
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
}

h5 {
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 25px;
}

a{
    cursor: pointer;
}

.web_page_content{
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.2;
    font-family: 'Open Sans', sans-serif;
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.web_page_content > p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
}

@media screen and (max-width: 600px) {
    .web_page_content{
        padding: 0 20px;
        padding-top: 50px;
    }

    .web_page_content > p{
        font-size: 16px;
    }
}

hr {
	border-top: #929292 solid 1px;
	border-bottom: none;
	margin: 0px;
}
@-moz-document url-prefix() {
    hr {
	    float: left;
	    width: 100%;
	}
}