.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #0c0c0c;
    margin-top: 100px;
    text-align: center;
}

.hero-text p {
    font-size: 1.8rem;
    color: #0c0c0c;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

/* Algemene styling voor centrering */
.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    text-align: center;
}

/* Zoekbalk styling */
.search-box {
    display: flex;
    border: 2px solid #333;
    border-radius: 50px;
    overflow: hidden;
    width: 60%;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    font-size: 16px;
}

/* Zoekknop styling */
.search-box button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    font-size: 16px;
}

.article-overview .container .articles {
    display: grid;
    grid-template-columns: 3fr 3fr 3fr 3fr;
    gap: 20px;
    padding: 20px 0;
}

.container .search-result-title {
    margin-top: 20px;
    text-align: center;
}

/* mobile */
@media screen and (max-width: 600px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.5rem;
    }

    .search-box {
        width: 80%;
    }
}