body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000; 
    color: #FFA500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.center-content {
    text-align: center;
    border: 2px solid #FFA500;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.5);
}
h1 {
    font-size: 3rem;
    margin: 0;
}
p {
    font-size: 1.25rem;
    margin-top: 10px;
    font-style: italic;
}
span{
    color: #fff;
}
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.75rem; /* Kleine letters */
    color: #fff; /* Witte tekst */
    font-style: italic;
}