body{
    background-color: #AEB784;
    color: #41431B;
}
    
h3{
    font-size: 3rem;
    font-family: 'Courier New', Courier, monospace;
}
  
#click-button{
    background-color: #E3DBBB;
    border-radius: 10px;
    width: 200px;
    height: 70px;   
    font-size: 2rem;
    border: none;   
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
}

#click-button:hover{
    background-color: #F8F3E1;
    cursor: pointer;
    scale: 1.1;
    transition: all 0.2s ease-in-out;
}

#click-button:active{
    background-color: #E3DBBB;
    cursor: pointer;
    scale: 0.9;
    transition: all 0.1s ease-in-out;
}

#reset-button{
    background-color: #E3DBBB;
    border-radius: 10px;
    width: 150px;
    height: 70px;   
    font-size: 2rem;
    border: none;   
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
}

#reset-button:hover{
    background-color: #F8F3E1;
    cursor: pointer;
    scale: 1.1;
    transition: all 0.2s ease-in-out;
}

#reset-button:active{
    background-color: #E3DBBB;
    cursor: pointer;
    scale: 0.9;
    transition: all 0.2s ease-in-out;
}

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

.game-area{
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.shop-item{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 8px;
    background-color: #E3DBBB;  
}

.shop-item:hover{
    background-color: #F8F3E1;
    scale: 1.1;
    transition: all 0.2s ease-in-out;
}

.shop-item h3{
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
}

.shop-item p{
    margin: 0;
    font-size: 0.8rem;
    font-family: 'Courier New', Courier, monospace;
    opacity: 0.8;
}

.shop-item button{
    background-color: #C9B380;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

.shop-item button:hover{
    background-color: #BFA06E;
    cursor: pointer;
    scale: 1.1;
    transition: all 0.2s ease-in-out;
}

.shop-item button:active{
    background-color: #C9B380;
    cursor: pointer;
    scale: 0.9;
    transition: all 0.1s ease-in-out;
}

.stats-panel-money{
    background-color: #E3DBBB;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    height: 50px;
    width: 250px;
}

.stats-panel-money h3{
    margin-top: 0;
    font-size: 3rem;
}

.stats-panel{
    background-color: #E3DBBB;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    height: fit-content;
    width: 250px;
    margin-top: 100px;
    margin-left: -316px;
}

.shop-panel{
    position: absolute;
    top: 10px;
    right: 10px;
    height: 400px;
    width: 270px;
}

.reset-button{
    position: absolute;
    bottom: 10px;
    right: 10px;
}

#click-button{
    display: block;
    margin: 0 auto;
}