/* styles.css */
body {
    font-family: 'Roboto', sans-serif; /* Ander lettertype */
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 20px;
}







/* styles.css */
.header-container {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px; /* Pas deze waarde aan naar de gewenste grootte */
    height: 50px; /* Zorg ervoor dat de afbeelding vierkant blijft */
    margin-right: 10px; /* Ruimte tussen de afbeelding en de site titel */
}



footer a {
    color: #ffffff; /* Witte kleur voor links in de footer */
    text-decoration: none; /* Verwijder onderstreepte stijl */
}


h1 {
    margin: 0;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}



main {
    padding: 20px;
}

section {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    margin-top: 0;
    font-size: 2rem;
    color: #4CAF50;
}

section p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: #333;
}

audio {
    display: block;
    margin: 20px auto;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.progress {
    height: 20px;
    margin-top: 20px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    background-color: #4CAF50;
    text-align: center;
    line-height: 20px;
    color: white;
    width: 0;
    transition: width 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
