* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-image: url('img/overlast.png'); /* Voeg hier de URL van je afbeelding in */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.quiz-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.question {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.quiz-form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

button {
    padding: 15px 30px;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    flex: 1;
}

.button-waar {
    background-color: #4CAF50;
    color: white;
}

.button-nietwaar {
    background-color: #F44336;
    color: white;
}

button:hover {
    transform: scale(1.05);
}

button:active {
    transform: scale(0.98);
}

/* Media Queries for Responsive Design */
@media (max-width: 600px) {
    .quiz-form {
        flex-direction: column;
    }

    button {
        padding: 20px;
        font-size: 1.2em;
    }
}

.button-blauw {
    background-color: #2196F3;
    color: white;
}
.logo-container {
    margin-top: 20px;
}

.logo {
    width: 50px; /* Stel de grootte van het logo in */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1; /* Verhoog de zichtbaarheid wanneer er overheen wordt gehooverd */
}