.hero-section{
    background-color: var(--blauw);

    height: 100svh;
    width: 100vw;
}


.hero-section > .container{
    height: 100%;
    
    display: flex;
        flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section > .container > h1{
    color: var(--wit);
    font-size: 3.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-buttons{
    display: flex;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.hero-image{
    max-width: 90%;
}

.hero-video{
    max-width: 90%;
    max-height: 60vh;
    object-fit: cover;
}

/* Mobile */
@media screen and (max-width: 767px) {
.hero-section > .container > h1{
    font-size: 2rem;
}

.hero-section{
    background-color: var(--blauw);

    height: 100%;
    padding: 100px 0;
}

.hero-section > .container{
    width: 90vw;
}

.hero-image{
    max-width: 100%;
}

.hero-buttons {
    gap: 1rem;
            justify-content: center;
}
}


/* Mobile */
@media screen and (max-width: 507px) {
.hero-section > .container > h1{
    font-size: 1.6rem;
}
}