body {
    background-color: black;
    color: white;
    text-align: center;
    margin-top: 100px;
}

button {
    background-color: #333;
    border-radius: 8px;
    border: 1px solid #555;
    color: inherit;
    /* On hover changes cursor to pointy finger */
    cursor: pointer;
    font-size: 1.2rem;
    padding: 10px 20px;
}

dialog {
    background-color: #222;
    color: white;
    border: 1px solid #555;
    border-radius: 12px;
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

#shopBtn {
    /* background: transparent; */
    border: none;
    background-image: url("assets/shop.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
}

#totalText {
    position: absolute;
    top: 20px;
    left: 20px;
}

#moonCakeBtn {
    font-size: 300px;
    background: transparent;
    border: none;
    transition: transform 0.1s;
}

#moonCakeBtn:active {
    transform: scale(0.8);
}

#closeShopBtn {
    font-size: 10;
    top: 20px;
    right: 20px;
}
