body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Zorgt ervoor dat het lichaam de volledige hoogte van het scherm gebruikt */
}

h1 {
    color: #ffffff;
}

p {
    color: #ffffff;
}

.container {
    max-width: 600px;
    background: white;
    padding: 20px;
    font-size: 2em;
    border-radius: 25px;
    text-shadow: 
        1px 1px 0 black, 
        -1px -1px 0 black, 
        1px -1px 0 black, 
        -1px 1px 0 black, 
        0 0 5px white; /* Witte gloed behouden */
    text-align: center; /* Optioneel: centreert de tekst in de container */
}
