body .bgImage {
    background-image: url("/images/omslagfotos/omslagfotoDrank.jpg");
    background-position: center;
}

.main-wrapper {
    display: flex;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 35%;
    left: 100px;
    right: 100px;
}
.main-title {
    width: 25%;
    background-color: #e2d5cb;
    padding: 25px;
    border: none;
    border-radius: 10px;
}

div.prijzen {
    background-color: #e2d5cb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prijzen .title {
    margin-top: 10px;
}

.prijzen .text {
    font-size: 16pt;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    margin: 5px;
}


.prijzen .text.fineprint {
    font-size: 11pt;
}

.prijzen .button {
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    margin-top: 50px;
    margin-bottom: 80px;
}

.prijzen .button.content {
    font-size: 15pt;
    font-family: Milker, Roboto, sans-serif;
    background-color: #2d3334;
    padding: 20px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    color: #e2d5cb;
    transition-duration: 0.2s;
}

.prijzen .button.content:hover {
    color: #804141;
    box-shadow: 6px 6px 16px rgba(52, 88, 111, 0.5);
}

#dranklijst {
    background-color: #e2d5cb;
    padding-bottom: 50px;
}

.category {
    background-color: #e2d5cb;
    font-weight: bold;
    color: #2d3334;
    padding-top: 40px;
    padding-bottom: 10px;
    text-align: center;
}

.items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    margin-top: 10px;
    margin-left: 5%;
    margin-right: 5%;
}

.item {
    font-weight: bold;
    background: rgba(45, 51, 52, 0.08);
    padding: 6px 10px;
    border-radius: 6px;
}


/* Responsive Styles */

@media (max-width: 1440px) {

}

@media (max-width: 1280px) {
    .items-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .main-title {
        width: 35%;
    }
}

@media (max-width: 768px) {
    .main-title a {
        font-size: 30px;
    }


    .prijzen .title {
        font-size: 25pt;
    }

    .prijzen .text,
    .prijzen a {
        font-size: 12pt;
    }

    .prijzen .button.content {
        font-size: 16pt
    }

    .item {
        font-size: 14pt;
    }
}

@media (max-width: 600px) {
    
    .main-title {
        width: 80%;
    }
}

@media (max-width: 360px) {
    .warning2 {
        top: 50%;
    }
}