body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', sans-serif;
}

h1 {
    text-align: center;
    padding: 15px 0;
    border-top: 1px dashed #c1a972;
    border-bottom: 1px dashed #c1a972;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 400;
    color: #c1a972;
}

h2 {
    text-align: center;
    padding: 15px 0;
    border-top: 1px dashed #c1a972;
    border-bottom: 1px dashed #c1a972;
    color: #c1a972;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

.container {
    max-width: 900px;
    border: 1px solid #4f4f4f;
    padding-top: 10px;
}

#intro, #aanbod, #voordele {
    padding-left: 50px;
    padding-right: 50px;
}

.banner-logo {
    height: 500px;
    background-image: url('assets/farmshare2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-footer {
    background-image: url('assets/farm.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.banner-logo img {
    height: 200px;
}

.number {
    display: block;
    background-color: #c1a972;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 30px;
    font-weight: bold;
    font-family: 'bignoodletitlingregular', sans-serif;
    border-radius: 50%;
}

.accreditations {
    display: flex;
    justify-content: space-around;
}

.accreditations img {
    height: 80px;
}

.important-content {
    background: #c1a972;
    border: 1px dashed #ffffff;
    padding: 15px;
    text-align: center;
    color: #ffffff;
    max-width: 550px;
    margin: 30px auto;
}

#contact h2 {
    font-size: 2rem;
}

@media (max-width: 576px) { 
    .container {
        padding: inherit;
    }

    .banner-logo {
        height: 300px;
    }

    .banner-logo img {
        height: 100px;
    }

    #intro, #aanbod, #voordele {
        padding-left: 20px;
        padding-right: 20px;
    }

    .accreditations img {
        height: 50px;
    }

    .item {
        text-align: center;
        margin-bottom: 30px;
    }

    .number {
        margin: 0 auto 15px;
    }

    #contact h2 span {
        display: block;
    }
}