 .topbar {
    background: #0064fa;
    height: 15px;
    width: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: white;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}
.home-link {
    display: inline-block;
    position: relative;
    top: 5px;
    left: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: normal;
    text-decoration: underline;
    color: black;
}

.top-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.top-button {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.top-link {
    text-decoration: underline;
    color: black;
    font-size: 1rem;
    font-weight: normal;
}

.container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 20px;
    flex: 1;
}

.container.left {
    max-width: 800px;
    text-align: justify;
    line-height: 1.7;
    padding-bottom: 10px;
}

.sound-control {
    position: absolute;
    top: 35px;
    left: -150px;
}

.sound-control a {
    text-decoration: underline;
    color: black;
    font-size: 1rem;
    font-weight: normal;
}

h1 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 1px;
    text-align: left;
}

h2 {
    font-weight: normal; /* Maakt het niet vet */
    font-size: 1.25rem;  /* Of een andere gewenste grootte */
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 60px;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: center;
}

h4 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 40px;
    text-align: center;
}

ol li, ul li {
    margin-bottom: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
    width: 100%;
    max-width: 1000px;
}

.grid a img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid a img:hover {
    transform: scale(1.05);
}

footer {
    background: #39FF14;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}


footer a {
    color: white;
    text-decoration: underline;
}

a {
    color: black;
    text-decoration: underline;
}

a:hover {
    color: black;
}

/* Media query voor mobiele schermen */
@media (max-width: 900px) {
    .sound-control {
        position: relative;
        top: 5px;
        left: 0;
        margin-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0; /* zorg dat afbeeldingen elkaar raken */
        padding: 0;
    }

    .grid a img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* h3 niet aanpassen hier */
}


