* {
    margin: 0;   
}

body {
    background-color: black;
    color: white;
    font-family: 'Space Grotesk', 'Noto Sans', sans-serif;
}

.game {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.window {
    display: flex;
    flex-direction: row;
    width: 1050px;
    height: 722px;
    background-color: rgb(11, 11, 12);
    border: rgb(124, 124, 175) solid 2px;
    border-radius: 16px;
}

.clicker {
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    width: 58%;
    border-right: 2px solid rgb(124, 124, 175);
}

.btn-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.click-btn {
    width: 256px;
    height: 256px;
    background-color: rgb(16, 16, 18);
    border: rgb(124, 124, 175) solid 2px;
    border-radius: 128px;
    font-size: 64px;
    cursor: pointer;
    transition: background-color 50ms ease-in-out, width 50ms ease-in-out, height 50ms ease-in-out, font-size 50ms ease-in-out;
}

.click-btn:active {
    width: 250px;
    height: 250px;
    font-size: 60px;
    background-color: rgb(37, 37, 79);
}

.stats {
    display: flex;
    width: 100%;
    margin: 20px 0 32px 0;
    justify-content: center;
}

#balance {
    display: flex;
    font-size: 24px;
    cursor: default;
}

.sidebar {
    display: flex;
    flex-flow: column;
    width: 42%;
    overflow-y: auto;
}

h1 {
    width: 100%;
    margin: 32px 0 32px 0;
    text-align: center;
    cursor: default;
}

.item-section {
    margin-left: 12px;
}

h2 {
    margin-bottom: 16px;
    cursor: default;
}

.item-list {
    font-size: 20px;
    margin-left: 16px;
}

.item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
    transition: color 125ms ease-in-out;
}

.item:hover {
    color: rgb(141, 141, 215);
}

.item-name {
    font-size: 18px;
}

.item-desc {
    margin-top: 4px;
    margin-left: 12px;
    font-size: 15px;
    color: #999;
}

.item-price {
    font-size: 15px;
    text-align: right;
    margin-right: 12px;
}