/* Basis kleuren */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #262125;
    color: #f5e3a1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    padding: 2rem;
    max-width: 800px;
}

/* Header */
.logo {
    width: 250px;
    max-width: 60%;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

/* Tekst */
main p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mail link */
.email {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    border: 2px solid #f5e3a1;
    border-radius: 5px;
    color: #f5e3a1;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.email:hover {
    background-color: #f5e3a1;
    color: #262125;
}

/* Footer */
footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    main p {
        font-size: 1rem;
    }

    .logo {
        width: 175px;
    }
}
