#click-button {
    background: transparent;
    border: none;
    cursor: pointer;
}

#click-button:hover {
    filter: brightness(0.8);
}

body {
    background-color: black;
    color: whitesmoke;
}

.game-layout{
    display:grid;
    grid-template-columns: 1fr 2fr 3fr;
    gap: 20px;
    padding: 20px;
    align-items: start;
}

.game-area{
    text-align: center;
}

.shop-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.1);
}

.shop-item h3 {
    margin: 0 0 4px 0;
    font-size: 1em;
}

.shop-item p {
    margin: 0;
    font-size: 0.7em;
    opacity: 0.8;
}

.shop-item button {
    background-color: navy;
    border: 2px solid cadetblue;
    border-radius: 4px;
    color: rgb(201, 245, 255);
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
}