.marqueeInner {
    overflow: hidden;
    white-space: nowrap;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    animation: marquee 10s linear infinite;
    font-size: 30px;
}

.marqueeInner span, img {
    padding-right: 40px;
}

.kitekScrollImg {
    width: 75px;
    height: 75px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

html, body {
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* disable page scrolling */
}

body {
    font-family: "comic sans ms";
    font-size: 16px;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("img/kebab-restaurant-background.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

#overlaySubwaySurfersTimer {
    margin-bottom: 5px;
    font-size: 35px;
    display: flex;
    justify-content: center;
}

#overlaySubwaySurfers {
    z-index: 5;
    position: absolute;
    transform: translate(-30vw, -14vh);
}

#kebab {
    background: none;
    border: 0px;
}

#headerContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

#clickerMainButtonContainer {
    display: flex;
    justify-content: center;
}

#credits {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: blue;
    font-size: 30px;
    height: 40px;
    animation: credits 15s linear infinite;
    white-space: nowrap;
    overflow: hidden;
}

#upgradeButtons {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-right: 10vw;
    margin-left: 10vw;
}

#upgradeButton {
    height: 150px;
    flex: 0 0 calc(100% / 4);
    justify-content: center;
    align-items: center;
    padding: 2vh;
    font-size: 16px;
    background-blend-mode: lighten;
}