.banner {
    flex-direction: column;
    justify-content: center;
    height: 140px;
}
.banner .strong {
    font-weight: bold;
    color: #262025;
    margin-bottom: 1rem;
}
.banner p {
    color: #676767;
}

.werkingwrapper {
    width: 100%;
    padding: 1rem;
}

.werkingwrapper h2 {
    color: #faa8bf;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.werkingwrapper img {
    width: 100px;
}

.taart, .vervoer, .compleet {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 1rem auto;
}

.werkingwrapper p{
    margin-left: 5%;
}

.scrollwrapper {
    width: 100%;
    height: 300px;
    position: relative;
    background: url("../content/bestellen/sweettable.JPG") no-repeat center center/cover; 
    background-attachment: fixed;  
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
}

.scrollwrapper::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: inset 20px 20px 30px rgb(39, 39, 39), inset -10px -5px 30px rgb(56, 56, 56);
}

.bestelwrapper {
    background-color: #fff5f6;
    width: 100%;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
}

.bestelwrapper .strong {
    margin-bottom: 1rem;
    font-weight: bold;
}

.tabel {
    display: flex;
    margin: 2rem 0;    
}

.producten p {
    margin-bottom: 0.5rem;
}
.prijzen p {
    margin-bottom: 0.5rem;
}
.prijzen {
    margin-left: 2.5rem;
}
.contactform h2, .prijzen h2{
    color: #faa8bf;
    font-weight: bold;
}

form {
    margin-top: 1.6rem;
}

form .light {
    font-size: 0.8rem;
}

form input {
    width: 100%;
    margin: 0.3rem 0;
    margin-bottom: 0.6rem;
    border-radius: 4px;
    border: solid 1px grey;
    height: 25px;
}

input, textarea {
    display: block;
}

input, .msg {
    margin: 0.2rem auto;
    border-style: solid;
    border-color: grey;
    border-width: 1px;
    background-color: white;
    border-radius: 7px;
    height: 3rem;
    width: 75%;
    outline: none;
    padding-left: 0.2rem;
    font-size: 0.9rem;
    text-align: left;
    color: #ACACAC;
}

/*Normal placeholders*/
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #aaa;
    font-style: italic;
    opacity: 1; /* Firefox */ 
}
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #aaa;
    font-style: italic;
}
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #aaa;
    font-style: italic;
}

  .msg {
    height: 150px;
    width: 100%;
    padding: 0.2rem;
    resize: none;
}

.contactform .Btn {
    background-color: #faa8bf;
    border: none;
    margin-top: 0.8rem;
    cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus{
  -webkit-text-fill-color: #faa8bf;
  box-shadow: 0 0 0 1000px white inset;
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

@media (max-width: 880px){
    .bestelwrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .tabel {
        text-align: left;
        justify-content: center;
    }
    .contactform {
        margin-top: 1rem;
    }
    form p {
        text-align: left;
    }
    form .Btn{
        float: left;
    }
    .prijzen {
        margin-left: 0;
    }
}

@media (max-width: 620px){
    .banner {
        height: 180px;
    }
    .banner h1 {
        font-size: 1.3rem;
    }
    .banner h1, .banner p {
        margin: 0 1rem;
        text-align: center;
    }
}

@media (max-width: 420px){
    .taart, .compleet, .vervoer {
        margin-bottom: 1rem;
    }
}