/* Algemene stijlregels */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    padding-top: 100px;
    padding-bottom: 100px;
    line-height: 1.6;
    color: #333;
    background-color: #eec6ee;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #663366;
    box-shadow: 0 8px 12px #44224480;
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%; 
    z-index: 1000; 
}

footer {
    background-color: #663366;
    color: #f0b0f0;
    padding: 20px;
    text-align: center;
    position: fixed; /* Zet de footer vast */
    bottom: 0; /* Aan de onderkant van de pagina */
    left: 0;
    width: 100%;
    z-index: 1000; /* Zorgt ervoor dat de footer boven de content blijft */
}


footer p {
    margin-bottom: 10px;
    color: #f0b0f0;
}

.logo h1 {
    font-size: 1.5rem;
    color: #b69eb6; /* Accentkleur */
}

.tandwiel {
    height: calc(100vh - 300px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #663366;
    text-align: center;

    background-color: white; /* Witte achtergrond */
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 0 30px 10px #490e49, 0 0 10px 0px white inset; /* Schaduw van wit naar #eec6ee */
    margin: 50px;
}

.tandwiel-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tandwiel p {
    font-size: 1.2rem;
}