/* TODO: border onder pre-order fixen!! */
.video-container {
    width: 100%;
    height: 360px;
    margin-bottom: 60px;
}

.video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.together {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    align-items: stretch
}

.together div {
    flex: 1;
}

#voordelen-lijst {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#voordelen div, #voordelen {
    text-align: center;
}

#voordelen .title {
    margin: 0;
}


#voordelen p {
    width: 70%;
    padding-left: 15%;
    margin-top: 0;
}

#abt {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: rgb(210,214,220);
    min-height: 100%;
}

.voordeel {
    border: 1px solid rgb(210,214,220);
    border-radius: 10px;
    padding: 10px;
    width: 50%;
    text-align: center;
    margin: 10px;
    background-color: rgb(240,242,244);
}

#abt p, #verhaal p {
    margin: 0;
    padding: 25px;
}

#verhaal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 30px;
}
#verhaal p {
    width: 60%;
    margin: 0;
}
.title {
    font-size: 2em;
    font-weight: bolder;
    text-transform: capitalize;
    border-bottom: 1px solid rgb(210,214,220);
}

#cover {
    margin-bottom: 150px;
}

.cover-img {
    width: 200px;
    height: 266px;
}

#abt-img, #cover-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgb(210,214,220);
}

#abt, #voordelen {
    box-sizing: border-box;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: white;
}

#shadow {
    box-shadow: 0 3px 10px rgb(210,214,220);
    margin-left: 25%;
    margin-right: 25%;
}

@media screen and (max-width: 854px) {
    .together {
        flex-direction: column;
    }

    .together div {
        margin-bottom: 40px;
    }

    #shadow {
        box-shadow: none;
    }

    #cover-img, #abt, #abt-img, #voordelen {
        box-shadow: 0 3px 10px rgb(210,214,220);
    }

    #cover-img {
        background-color: white;
    }

    #voordelen {
        background-color: rgb(210,214,220);
    }

    #voordelen-lijst > div {
        background-color: white;
        border: 1px solid rgb(210,214,220);
        margin: 10px;
    }
}

@media screen and (max-width: 500px) {
    #shadow {
        margin-left: 10%;
        margin-right: 10%;
    }
    #verhaal p, #abt p, #voordelen p {
        text-align: justify;
    }
}

@media screen and (max-width: 290px) {
    #shadow {
        margin-left: 10%;
        margin-right: 10%;
    }

    .cover-img {
        width: 160px;
        height: 200px;
    }

}