
.navigatiebalk {
    text-align: center;
    outline: auto;
    font-size: xx-large;
    background-color: black;
    display:  flex;
    justify-content: space-evenly;
    list-style: none;
}
.navigatiebalk a {
    text-decoration: none;
    color: rgb(0, 255, 234);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body {
    background-color: rgb(54, 182, 217);
}

.content {
    margin: 0 auto;	
    max-width: 1300px;
    justify-content: center;
}

.container {
    background-color: rgb(54, 182, 217);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.text-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
}

.text-content h1 {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
}

.text-content p {
    max-width: 500px;
    margin-bottom: 2rem;
}

.text-content a {
    padding: 1rem 2rem;
    background-color: rgb(0, 0, 0);
    padding: 10px 30px;
    color: rgb(1, 255, 213);
    text-decoration: none;
    border-radius: 25px;
}

.image-wrapper {
    width: 500px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}