body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #fff;
    /* Maakt alle tekst wit */
    background-image: url('office-background.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Donkere overlay met opacity */
    backdrop-filter: blur(8px);
    /* Blur-effect voor de achtergrond */
}

.container {
    text-align: center;
    position: relative;
    /* Zorgt ervoor dat de container boven de overlay komt */
    z-index: 1;
    /* Zorgt ervoor dat de tekst zichtbaar is boven de overlay */
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

p {
    font-size: 24px;
}

.contact span {
    font-style: italic;
}

@media (max-width: 600px) {
    h1 {
        font-size: 32px;
    }

    p {
        font-size: 18px;
    }
}