/* google fonts importeren */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;700&display=swap');


/* CSS reset om standaard whitespace weg te halen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    overflow: hidden; /*schuifbalken weg */
    }

.header_line {
    height: 80px;
    width: 100%;
    background-color: #ffffff;
    margin: 0;
}

/* met .blabla maak je een css stijl aan voor het class attribuut in div */

.header_logo {
    width: 150px;
    height: 80px;

    font-size: 1.8em;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;  /* vertical alignment */
    justify-content: center; /* horizontal alignment */
    color: rgb(0, 0, 0);

    cursor: pointer;

    background-color: #ffffff;
    position:absolute;
    top:0px;
    left:0px;
    }


 .header_button {
    width: 100px;
    height: 50px;

    font-size: 1.2em;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    display: flex;
    align-items: center;  /* vertical alignment */
    justify-content: center; /* horizontal alignment */
    color: rgb(255, 255, 255);

    cursor: pointer;

    border: none;
    border-radius: 0.2em;
    background-color: #577F84;
    position:absolute;
    /* top:15px;
    #right:40px; */
    }


.home_image {
    width: 100vw; /* Volledige breedte van het scherm */
    height: 100vh; /* Volledige hoogte van het scherm */
    object-fit: cover; /* Zorgt ervoor dat de afbeelding proportioneel wordt geschaald */
    border-radius: 0px;
}