html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column; /* Zorgt ervoor dat we flexbox gebruiken */
}

body {
    font-family: Arial, sans-serif;
    background-image: url('img/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    flex: 1; /* Laat de container de beschikbare ruimte innemen */
    background-color: rgba(190, 204, 184, 0.9); /* Maak de container semi-transparant */
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    padding: 20px; /* Verwijder padding-bottom */
}

.navbar {
    display: flex;
    justify-content: center;
    background-color: #495941;
    padding: 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 15px;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #004d40;
}

.game-image {
    width: 100%;
    height: auto;
}

.start-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #495941;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 5px 0 5px;
}

.start-button:hover {
    background-color: #004d40;
}

.footer {
    background-color: rgba(0, 121, 107, 0.8); /* Donkergroene achtergrond */
    color: white; /* Witte tekstkleur */
    text-align: center; /* Centreert de tekst */
    padding: 10px; /* Maak het kleiner door de padding te verkleinen */
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    width: 500px;
}