body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

section {
    width: 80%;
    text-align: center;
}

/*-COOKIES SECTIE-*/
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f8f8f8;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 100;
}

.cookie-banner p {
    margin: 0;
    color: #333;
}

button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}
/*-EINDE COOKIES SECTIE-*/

/*-HEADER SECTIE-*/
.header-with-text {
    text-align: center;
    position: relative;
}

.header-content {
    position: relative;
}

.header-content img {
    max-width: 100%;
    height: auto;
    -webkit-mask-image: linear-gradient(black 30%, transparent);
    mask-image: linear-gradient(black 30%, transparent);
    
}

.header-content h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0px;
    color:#333;
    font-size: 50px;
    z-index: 10;
}
/*-EINDE HEADER SECTIE-*/

/*-NAVIGATIE SECTIE-*/
.navigatie-nav {
    padding: 20px;
    text-align: Center;
}

.navigatie-btn {
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    margin: 0px 10px;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    position: relative;
    transition: color 0.1s ease, border-bottom 0.1s ease;
    font-size: 18px;
    font-weight: bold;
    text-decoration-line: none;
}

.navigatie-btn:hover {
    color: #555;
    border-bottom: 5px solid #fc01bd;
    border-radius: 0;
}
/*-EINDE NAVIGATIE SECTIE-*/

/*-BLOG PAGINA-*/
.blog-post {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Roboto', sans-serif;
}

.blog-post h2 {
    font-size: 28px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.blog-post h3 {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.date {
    color: #888;
    font-size: 14px;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

.blog-content {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.read-progress-bar {
    height: 15px;
    background-color: #4CAF50;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
/*-EINDE BLOG PAGINA-*/

/*-FOOTER-*/
footer {
    color: #333;
    padding: 10px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #ccc;
}
/*-EINDE FOOTER-*/

/*-MOBIELE WEBSITE-*/
@media screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .navigatie-nav {
        margin-top: 20px;
    }

    .navigatie-btn {
        height: auto;
        display: block;
        margin-bottom: 10px;
    }

    .header-content h1 {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .header-content img {
        margin-top: -10px;
    }

    .btn-lees-meer {
        margin-bottom: 10px;
    }
}
/*-EINDE MOBIELE WEBSITE-*/

/*-TABLET WEBSITE-*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .navigatie-btn {
        height: auto;
        display: block;
    }
}