body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(-180deg, #ffdf00, #ffb400);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 95%;
    width: 95%;
}

#info {
    height: 30%;
    width: 100%;
}

#logo {
    position: absolute;
    width: 100%;
    padding: 0.5%;
    background-color: #ffc800;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#jokerLogo {
    width: 89px;
    height: 36px;
}

#backButton {
    position: relative;
    top: 2%;
    right: 35%;
    cursor: pointer;
}

#header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #c60c30;
    font-size: 1.5em;
    font-family: Ed Gothic, Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 1%;
}

#intro {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
    margin: 1%;
}

#gameContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
}

#gameAndPrices {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 1.25rem;
}

#spill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
}

#gamePlay {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    margin: 2%;
    height: 10%;
    width: 100%;
}

.item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem;
    width: 5%;
}

.item button {
    width: 2em;
    height: 2em;
    align-items: center;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    flex-flow: column nowrap;
    font-family: Jubel, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 2rem;
    /* font-weight: 400; */
    grid-column: 1;
    grid-row: 1;
    padding: 0.125rem 0 0 0.125rem;
    margin: 0.5rem;
    background-color: #fff;
    color: #000;
    border: none;
}

.item button:disabled {
    background-color: #ffdf00;
    color: #ffdf00;
    cursor: auto;
    border: none;
}

#jokerHat {
    height: 40%;
    position: fixed;
    top: 18%;
    right: 25%;
    z-index: -1;
}

.up {
    background-color: #c60c30;
    color: #fff;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    transition: .1s ease-in-out;
    cursor: pointer;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100%;
}
.up:enabled {
    background-color: #c60c30 ;
    color: #fff ;
    border: none;
}
.down {
    background-color: #c60c30;
    color: #fff;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    transition: .1s ease-in-out;
    cursor: pointer;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100%;
}
.down:enabled {
    background-color: #c60c30;
    color: #fff;
    border: none;
}

.correct {
    border: 5px solid #00892c !important;
    color: #000 !important;
    background-color: #fff !important;
}

.incorrect {
    border: 5px solid #c60c30 !important;
    color: #000 !important;
    background-color: #fff !important;
}


#prices {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20%;
}

.priceText {
    width: 90%;
    display: flex;
    margin-top: 1%;
    font-family: Jubel, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    text-indent: 0.75rem;
    padding: 2%;
}

.priceCurrent {
    background-color: rgb(198, 12, 48);
    color: rgb(255, 255, 255);
    border-radius: 14px;
}

#replay {
    background-color: #c60c30;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-size: .875rem;
    width: 11%;
    line-height: 1.25rem;
    color: #fff;
    cursor: pointer;
    border: none;
}

#easyWin{
    width: 50px;
}

@media (max-width: 1250px) {
    #jokerHat {
        display: none;
    }
}

@media (max-width: 768px) {
    #content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #info {
        height: 20%;
        margin-top: 0;
    }

    #backButton {
        right: 25%;
    }

    #header {
        font-size: 3rem;
    }

    #intro {
        margin: 0;
    }

    h1 {
        font-size: 70%;
    }

    #gameContainer {
        height: 70%;
        width: 100%;
    }

    #gameAndPrices {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    #spill {
        height: 50%;
        width: 70%;
        margin-right: 0%;
    }

    .item {
        margin: 10%;
        width: 5%;
    }

    .item button {
        width: 50px;
        height: 50px;
        margin: 15%;
    }

    #gameplay {
        width: 70%;
    }

    #prices {
        margin-bottom: 10%;
        width: 70%;
        height: 15%;
    }

    .priceText {
        width: auto;
        padding: 0.5%;
        font-size: 115%;
    }

    #replay {
        width: 40%;
        margin-bottom: 10%;
    }
}