* {
    margin: 0;
    padding: 0;
    font-family: Roboto;
}

#section1 {
    background: url("../img/stellingachtergrond.jpg"), linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)) repeat no-repeat center;
    background-blend-mode: overlay;
    background-size: cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Set position to relative so that z-index can work */
    z-index: 1; /* Set z-index to 1 so that the navbar can overlap */
}

#section1-content {
    color: white;
    text-align: center; /* Align text to the center */
}

.section1-content-content {
    padding: 0 20px;
}

#section1 h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

#over-ons {
    background: #212121;
    padding-top: 40px;
}

#over-ons-content {
    padding: 0 20px 40px;
    margin-right: auto;
    margin-left: auto;
    color: white;
}



#over-ons-content .button1 {
    color: #fffcf2;
    border-radius: 3px;
    padding: 19px 54px;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: .1em;
    background-color: #1e1e1e;
    display: inline-block;
    transition: .2s all ease-in-out;
    text-decoration: none;
    text-align: center;
    border: 1px solid #B7ADA1;
    border-top-color: rgb(183, 173, 161);
    border-right-color: rgb(183, 173, 161);
    border-bottom-color: rgb(183, 173, 161);
    border-left-color: rgb(183, 173, 161);
    box-shadow: 0 0 #fffcf2,0 0 #fffcf2,0 0 #fffcf2,0 0 #fffcf2;
}

#over-ons-content .button1:hover{
    background: #FFFCF2 !important;
    color: #1e1e1e !important;
    border-color: #b7ada1 !important;
    box-shadow: 4px -4px #fffcf2,-4px 4px #fffcf2,-4px -4px #fffcf2,4px 4px #fffcf2;
}

/* Media queries for section 1 */

@media (min-width: 1200px) {
    #section1-content {
        max-width: 1200px;
    }
    #over-ons-content {
        max-width: 1200px;
    }
}

@media only screen and (max-width: 768px) {
    #section1-content {
        margin-left: 30px;
        margin-right: 30px;
    }

    .section1-content-content {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
    }

    #section1 h1 {
        font-size: 2em;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 480px) {
    #section1 h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
}
