body {
    background-image: url('https://wallpapercave.com/wp/wp7667538.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Merriweather', serif;
    margin: 0;
    overflow-x: hidden;
}

#click-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

#click-button img {
    display: block;
    width: 75%;
    height: auto;
    margin: 0 auto;
}

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

.game-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    padding: 20px;
    padding-right: 0;
}


.game-area {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: flex-start;
    padding-top: 10px;
}

.game-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px black;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-align: center;
}


.shop-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-top: 10px;
}

.shop-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px black;
    margin-bottom: 20px;
    font-size: 2em;
    text-align: right;
    margin-right: 20px;
}

#shop-container {
    width: 400px;
    padding-right: 0;
}

.shop-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    height: 100px;
    margin-bottom: 5px;
    padding: 0 20px 0 20px;
    box-sizing: border-box;
    background-image: url('https://orteil.dashnet.org/cookieclicker/img/storeTile.jpg');
    background-size: 100% 400%; /*big brain since the actual image has 4 of those tiles*/
    background-position: top;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-right: 0;
}

.buy-display {
    color: #ffffff;
    text-shadow: 1px 1px 2px black;
    font-weight: bold;
}

.shop-item h3 {
    color: #ffffff;
    text-shadow: 1px 1px 2px black;
}

.shop-item p {
    color: #ffffff;
    text-shadow: 1px 1px 2px black;
}

.shop-item button {
    margin-left: 20px;
}

.money {
    color: #ffffff;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
    margin-bottom: 20px
}

/* nice amination*/
#click-button:hover {
    filter: brightness(0.9);
}
