* {
    font-family: 'Bahnschrift', 'Arial';
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #BDC9D4 !important;
    overflow-x: hidden !important;
    padding-top: 1vh;
    z-index: 1;
}

.element-box {
    background-color: #ffffff;
    color: black;
    margin: 0 auto;
    margin-top: 25px;
    border: 1px hidden lightgray;
    border-radius: 4px;
    padding: 15px;
    width: fit-content;
    box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.8);
    width: 75vw;
    transition: all 0.25s ease;
}

.element-box:hover {
    box-shadow: 0px 0px 25px 2px white;
    width: calc(75vw + 0.3rem);
}

@media (max-width: 1000px) {
    *:not[class="footer"] {
        font-size: 35px;
        zoom: 89%;
    }
    .element-box {
        margin-top: -10px !important;
        margin-bottom: 25px;
        width: 100% !important;
    }
    .navbar {
        display: none !important;
    }
    .logout-smsc {
        display: block !important;
        display: flex;
        justify-content: center;
        padding: 0;
        position: fixed;
        right: 0;
        bottom: 0;
    }

    .form-check-input {
        zoom: 300%;
        padding: 0px !important;
        margin: 3px;
        margin-left: -15px;
    }

    .btn-sm {
        margin: 15px;
    }
}

.logout-smsc {
    display: none;
}

.address-box {
    font-size: 21px;
    padding: 0px;
    margin: 0px;
}

.center {
    margin: 0 auto;
    width: 50%;
    display: flex;
    justify-content: center;
}

/* FLASH-Messages */
.ERROR-flash {
    color: #952623;
    font-style: italic;
    font-weight: 450;
    text-shadow: #777777 2px 0 5px;
}

.INFO-flash {
    color: #1371df;
    font-style: italic;
    font-weight: 450;
    text-shadow: #777777 2px 0 5px;
}