@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

html, body {
    background-image: url(/public/kubr-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
}

div, span, h1, h2, h3, h4, h5, h6, p, button, input, textarea {
    font-family: 'Nunito', sans-serif;
}

.default-primaryColor {
    background-color: #d0d0d0;
}

.default-secondaryColor {
    background-color: #231917;
}

body {
    background-image: url('/public/background-123.jpg');
}

main.main {
    background-image: none;
}

.mainborder {
    width: 800px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    margin-left: -400px;
    box-shadow: 0 0 30px #131313;
    display: none;
}

main.main .header .image {
    background-image: url('/public/kubr-logo.png');
    border-radius: 0;
    background-size: 520px;
    position: relative;
    margin-top: 310px;
    animation: logo 1.2s ease forwards 1.5s;
}

main.main .header .image.active {
    width: 600px;
    background-color: rgba(0,0,0,0);
}

@keyframes logo {
    0% {
        margin-top: 310px;
        transform: scale(1);
        left: 0;
    }
    100% {
        margin-top: 15px;
        left: 0px;
        transform: scale(0.8);
    }
}

main.main .controls .foodtype h1 {
    background-color: rgba(0,0,0,0);
    margin: 10px auto;
    border: none;
    border-radius: 0px;
    border-bottom: solid 1px #adadad;
    margin-bottom: 30px;
    color: #c9c9c9;
}

@keyframes controls {
    0% {
        opacity: 0;
        margin-top: 220px;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        margin-top: 50px;
        transform: scale(1);
    }
}

main.main .controls .foodtype h1.active {
    border-bottom: solid 2px #edede1;
}

main.main .controls.active {
    top: -50px;
}

main.main .controls .foodtype .list {
    background-color: #ffffffde;
}

main.main .controls .foodtype.weekly h2 span {
    background-color: #231917;
}

main.main .controls .foodtype.weekly h2, main.main .controls .foodtype.categorized h2 {
    color: #222;
    border-bottom: solid 2px #231917;
}

.cartcontainer .count {
    background-color: #d0d0d0;
    line-height: 45px;
}

.cartcontainer.expand .cartlist .totalprice {
    background-color: #d0d0d0;
}

.cartcontainer.expand .cartlist .food button {
    background-color: #d0d0d0;
}

.cartcontainer.expand .cartlist .food p .unitprice, .cartcontainer.expand .cartlist .food p .foodcount, .cartcontainer.expand .cartlist .food p .toppingsline {
    color: #222;
}

main.main .controls .foodtype .list .food .texts {
    background-color: rgb(255 255 255);
}

.weekend .day_1, .weekend .day_2, .weekend .day_3, .weekend .day_4 {
    display: none;
}

.currentWeek .day_6, .currentWeek .day_0 {
    display: none;
}
main.main .aboutus {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    margin-top: 50px;
    opacity: 0;
    animation: infotexts 1s ease 2.5s forwards;
}
main.main .aboutus a{
    color: #d6b1b1;
}
.infotexts {
    text-align: center;
    color: #c9c9c9;
    background-color: rgba(0,0,0,0);
    width: 760px;
    margin: auto;
    padding: 10px 20px;
    position: relative;
    font-size: 21px;
    opacity: 0;
    animation: infotexts 0.6s ease forwards;
    animation-delay: 2.5s;
}
@keyframes infotexts {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 660px) {
    main.main .header .image.active {
        transform-origin: center;
    }
    main.main .header .image {
        animation: logo2 1.2s ease forwards 1.5s;
    }
    .infotexts {
        width: 610px;
        left: 0px;
    }
    @keyframes logo2 {
        0% {
            margin-top: 310px;
            transform: scale(1);
            left: 0;
        }
        100% {
            margin-top: 60px;
            left: 0;
            transform: scale(0.8);
        }
    }
}
