* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
}

header {
    width: 100%;
    background-color: #34495e;
    position: fixed;
    top: 0;
}

header nav {
    display: flex;
    justify-content: flex-end;
}

header nav ul{
    width: 65vw;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items:center;
    gap: 5%;
    list-style: none;
    padding: 0;
}

header nav a{
    font-family: 'arial black';
    background-color:#34495e;
    color: white;
    text-align: center;
    text-decoration: none; 
    text-wrap:nowrap;
    padding: 15%; 
}

header nav a:hover {
    background-color: rgba(38, 53, 69, 1);
    transition-property: all;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 15%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}



section#background1 {
    height: 500px;
}


section#background1>img {
    width:100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
}



section#usp {
    display: flex;
    justify-content: center;
    align-items:center;    
    gap: 5vw;
    height: 600px;
}

section#usp>div {
    font-family: 'arial';
    background-color: white;
    color: #34495e;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(38, 53, 69, 1);
    width: 280px;
    height: 400px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

section#usp>div p#titletext {
    color: #34495e;
    text-align: center;
    font-size: 32px;
    margin-top: 0;
}

section#usp>div hr {
    border: 1px solid rgba(38, 53, 69, 1);
    width: 100%;
    margin: 15px;
}

section#usp>div a {
    font-family: arial;
    color: white;
    text-align: center;
    text-decoration: none; 
    text-wrap:nowrap; 
    background: #E74945;
    border: 2px solid #99302E;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
    display: inline-block;
}

section#usp>div a:hover {
    background: #B83A37;
}



section#abtus {
    background-color: #34495e;
    display: flex;
    justify-content: flex-start;
    align-items: center;    
    gap: 5vw;
    height: 600px;
}

section#abtus>img{
    max-width: 100%;
    max-height: 100%;
    padding-left: 5vw;
    object-fit: cover;
}

section#abtus>div {
    font-family: 'arial';
    background-color: #34495e;
    color: white;
    width: 40vw;
    height: 400px;
    padding-right: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style: none;
}

section#abtus>div p#titletext {
    font-family: 'arial black';
    color: White;
    font-size: 32px;
}



section#nieuwstitle {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
}

section#nieuwstitle p{
    font-family: 'arial';
    color: #34495e;
    font-size: 32px;
    height: 32px;
}

section#nieuwstitle hr{
    border: 1px solid rgba(38, 53, 69, 1);
    width: 10%;
    margin: 15px;
}



section#nieuws {
    display: flex; 
    justify-content: flex-start;
    height: 450px;
    overflow-x: scroll;
}

section#nieuws>div {
    display: flex;
    align-items:center; 
    gap: 3vw;
    padding-left: 3vw;
    padding-right: 3vw;
}

section#nieuws div#nieuwsblok {
    font-family: 'arial';
    background-color: white;
    color: #34495e;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(38, 53, 69, 1);
    width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

section#nieuws div#nieuwsblok p {
    padding: 25px;
}

section#nieuws div#nieuwsblok img {
    object-fit: cover;
    width: 100%;
    max-height: 50%;
}



footer {
    width: 100%;
    background-color: #34495e;
    position: relative;
    height: 100px;
}



