@font-face {
    font-family: "SpicySale";
    src: url("fonts/SpicySale.ttf") format("truetype");
}

@keyframes burgerpulse1 {
    0% {
        width: 20rem;
        height: 20rem;
        rotate: 10deg;
    }
    100% {
        width: 24rem;
        height: 24rem;
        rotate: 0deg;
    }
}

@keyframes burgerpulse2 {
    0% {
        width: 20rem;
        height: 20rem;
        rotate: -10deg;
    }
    100% {
        width: 24rem;
        height: 24rem;
        rotate: 0deg;
    }
}

body {
    background: #000;
    color: #fff;
    overflow: hidden;
}

#burger {
    width: 24rem;
    height: 24rem;
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

#burger img {
    width: 24rem;
    height: 24rem;
}

#burgers {
    font-family: "SpicySale", sans-serif;
}

.counter {
    position: relative;
    width: 8rem;
    height: 4rem;
    font-size: 2rem;
}

.counter span {
    position: absolute;
    top: 1rem;
    left: 4rem;
}

.counter img {
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 0;
    left: 0;
}

button#toggleShop {
    position: fixed;
    right: 2rem;
    top: 2rem;
    width: 4rem;
    height: 4rem;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    font-weight: bold;
    font-size: 2rem;
    transition: right 0.5s ease-out;
}

#shop {
    background: #111;
    width: 24rem;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 100vw;
    transition: left 0.5s ease-out;
    font-family: serif;
}

#shop button {
    background: none;
    border: none;
    position: relative;
    width: 6rem;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0%);
    margin: 1rem;
}

#shop button img {
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: 0;
    left: 0px;
}

#shop button:hover {
    color: #fff;
}

#shop button span.price {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 1.5rem;
}

#shop button:hover img {
    opacity: 0.2;
}

.bg {
    position: absolute;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    width: 96rem;
    height: 96rem;
    background: radial-gradient(#333, #111, #000, #000, #000);
    background-size: 96rem 96rem;
    background-repeat: no-repeat;
}