/* Basis instellingen om alles te centreren */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F8D7DA; /* Achtergrondkleur */
    color: #333;
}

.container {
    text-align: center;
    padding: 20px;
}

/* Logo instellingen */
.logo {
    max-width: 350px; /* Pas dit aan naar de gewenste grootte */
    height: auto;
    margin-bottom: 20px;
}

/* Tekst stijl */
h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    color: #303940;
}

p {
    font-size: 1.1rem;
    color: #777;
    margin-top: 10px;
}

/* Mobiele aanpassingen */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    .logo {
        max-width: 300px;
    }
}

img.logo {
    background: white;
    padding: 20px;
    border-radius: 15px;
}

p.seo-text {
    max-width: 525px;
    font-weight: 400;
    color: #313a3f;
}

p.coming-soon {
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    color: #ee373c;
    font-weight: bold;
}