/* Algemene stijl */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1a1a1a; /* Donkere achtergrond */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
}

.work-in-progress {
    background-color: #FFCC00; /* Felgeel */
    color: #333; /* Donkergrijs voor contrast */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.work-in-progress h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.website-info {
    background-color: #333; /* Donkergrijs voor de onderkant */
    color: #FFCC00; /* Felgeel voor de tekst */
    padding: 15px;
    border-radius: 10px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.website-info p {
    margin: 0;
}

.website-info span {
    font-weight: bold;
}

/* Responsiveness */
@media (max-width: 768px) {
    .work-in-progress h1 {
        font-size: 2rem;
    }

    .website-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .work-in-progress h1 {
        font-size: 1.5rem;
    }

    .website-info p {
        font-size: 0.9rem;
    }
}