/* styleintro.css */

/* Basis body */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #010000; /* zwarte achtergrond */
    color: #ffffff; /* witte tekst */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container gecentreerd */
.container {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    /* background: rgba(255, 255, 255, 0.05); /* subtiele overlay effect */
    max-width: 500px;
    width: 100%;
    /* box-shadow: 0 0 20px rgba(255,255,255,0.1); */
}

/* Logo centraal */
.logo img {
    width: 95%;
    max-width: 1000px;
    height: auto;
    margin-bottom: 30px;
}

/* Boodschap */
.message h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.message p {
    font-size: 1.2em;
    margin: 5px 0;
}

/* Responsive voor tablets */
@media (max-width: 768px) {
    .logo img {
        width: 100%;
    }

    .message h1 {
        font-size: 2em;
    }

    .message p {
        font-size: 1em;
    }
}

/* Responsive voor smartphones */
@media (max-width: 480px) {
    .logo img {
        width: 100%;
    }

    .message h1 {
        font-size: 1.5em;
    }

    .message p {
        font-size: 0.9em;
    }
}