
/* General styles */
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
   background:#222;
    color: #000;
    word-wrap: break-word;
    /* Breekt lange woorden af */
}

header,
footer {
    position: fixed;
    width: 100%;
    z-index: 10;
    background-color: #000;
    color: white;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    background-color: #000;
    color: white;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header-content {
    display: flex;
    align-items: left;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo img {
    height: 80px;
    /* Pas dit aan naar de gewenste hoogte */
    margin-right: auto;
    /* Logo blijft helemaal links */

}

.header-text {
    flex: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}


header {
    top: 0;
    height: 90px;
    /* Vaste hoogte voor de header */
}



/* Scrollable main content */
main {
    margin: 80px auto 0px;
    padding: 28px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.911);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(0, 0, 0, 0.2);
    overflow-y: auto;
    height: calc(100vh  - 130px);
    
}

/* Fixed footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 30px;
    z-index: 1000;
    margin:0;
    box-sizing: border-box;
}

/* Main column layout */
.content {
    text-align: left;
    background: #EEE;
    opacity: 0.8;
}

.content img {
    max-width: 200px;
    border-radius: 25%;
    margin: 10px auto;
    display:block;
    height:auto;
}

.content h1 {
    font-size: 2rem;
    color: #8294bb;
    margin-bottom: 5px;
	text-align:center;
}

.content p {
    line-height: 1.8;
    color:#000;
    font-size: 1.4rem;
    margin: 10px 15px;
}

.content a {
    color: #f7f58d;
    text-decoration: none;
    font-weight: bold;
}

.content a:hover {
    color: #000;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .themes-container {
        grid-template-columns: 1fr 1fr;
        /* Twee kolommen op mobiel */
    }

    .tma {
        flex: 1 1 calc(50% - 2rem);
    }

    header,
    footer {
        height: 60px;
    }

    main {
        margin: 35px 0 40px 0;
        /* Ruimte vrijmaken voor de header en footer */
    }

    .logo img {
        height: 60px;
        /* Pas de grootte van het logo aan op mobiel */
    }

    .header-text {
        font-size: 1.3rem;
        /* Optioneel: pas ook de tekstgrootte aan */
    }
}

@media (max-width: 300px) {
    .tma {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 480px) {
    #blog-container {
        padding-top: 25px;
        /* Minder ruimte bovenaan op mobiel */
        height: calc(100vh - 110px);
        /* Hoogte aanpassen voor header (50px) en footer (60px) */
    }
}