body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

#wrapper {
    flex: 1;
}

div {
    word-wrap: break-word;
}

.bg-title-image {
    background-image: url("../img/Buchstapel1.04a1c131c829.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    min-height: 1000px;
}

.home-title {
    background-color: rgba(224, 224, 224, 0.4);
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
}

.bg-separator-image {
    background-image: url("../img/Buchstapel2.0c3164a7ddad.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 500px;
}

.navbar-centered {
    flex-grow: 1;
    justify-content: center;
}

.has-nav-font {
    font-family: "Inter", sans-serif;
}

.button {
    background-color: #38383b;
    color: white;
    border-radius: 0;
    border-width: 0px;
    padding: 2rem;
}

.delete-button {
    padding: 1rem;
}

.button:hover {
    background-color: #57575a;
    color: white;
}

.large-title-size {
    font-size: 4rem;
}

.large-subtitle-size {
    font-size: 2.5rem;
}

.image-wrapper {
    display: table;
}

.image-wrapper img {
    position: absolute;
}

.image-caption {
    display: table-caption;
    caption-side: bottom;
    font-size: 1rem;
    line-height: 100%;
}

.image-transition img {
    transition-duration: 1s;
    opacity: 1;
}

.image-transition img:first-child {
    opacity: 0;
}

@media screen and (min-width: 1024px) {

    .image-transition:hover img {
        opacity: 0;
    }

    .image-transition:hover img:first-child {
        opacity: 1;
    }

}

.has-background-grey-verylight {
    background-color: #fafafa;
}

.content a {
    text-decoration: underline;
}

.cart-row {
    background-color: white;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    box-shadow: 3px 3px;
}

.product-tag {
    position: absolute;
    z-index: 0;
    font-size: 1rem;
    background-color: #57575a;
    color: white;
    padding: 0.3rem;
}

.product-image-size {
    height: 400px;
    width: 400px;
}

@media screen and (max-width: 500px) {

    .product-image-size {
        height: 250px;
        width: 250px;
    }
}

.product-detail-image-size {
    height: 350px;
    width: 350px;
}

@media screen and (max-width: 500px) {

    .product-detail-image-size {
        height: 250px;
        width: 250px;
    }
}

.is-max-700 {
    max-width: 700px !important;
}

.margin-auto {
    margin:auto;
}

.message-header {
    border-radius: 0;
}

.message.is-success .message-header {
    background-color: #67956E;
}

.message.is-success .message-body {
    background-color: rgba(103,149,110,0.1);
}

.modal-box {
    overflow-x: auto;
    overflow-y: auto;
    width: 600px;
    max-height: 640px;
}