body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: scroll !important;
    min-height: 100vh;
    margin: 0;
}

html {
    height: 100%;
}

.navBar {
    position: fixed;
    z-index: 1030;
    top: 0;
    width: 101%;
    left: 0;
}

.sectionSep {
    text-align: center;
}

.navLinks {
    font-size: 2.1rem;
    text-decoration: none;
    color: white;
}

.navLinks:hover {
    color: red;
}

.hero-img {
    width: 100vw;
    min-height: 50vh;
    object-fit: cover;
    display: block;
}

/* The hero image */
.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("world.png");

    /* Set a specific height */
    height: 100vh;

    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

/* Component stijl (van daveTech_C) */
.component-section {
    padding: 40px 60px;
    border-bottom: 1px solid #e0e0e0;
}

.component-section:nth-child(even) {
    background-color: #f8f8f8;
}

.component-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.component-text h2 {
    color: red;
    margin-bottom: 16px;
}

.component-text p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}