body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-color: lightcoral;
}
.button {
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    /* margin: 10px; */
    cursor: pointer;
    background-color: #64fa7d;
    color: black;
    border: none;
    border-radius: 5px;
}
.button:hover {
    background-color: #64fa7d;
}
.stats {
    margin-top: 10px;
    font-size: 18px;
}
.upgrade {
    margin-top: 10px;
    font-size: 18px;
}
.upgrade button {
    font-size: 14px;
}

.collapsible {
    background-color: rgb(96, 247, 247);
    color: #161616;
    cursor: pointer;
    /* margin: 20px; */
    padding: 18px;
    /* width: 100%; */
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
  }

.collapsible-content {
    display: none;
}
  
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
    background-color: #a8d1d1;
}

.investing {
    visibility: hidden;
}

.disable-dbl-tap-zoom {
    touch-action: manipulation;
  }

.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: rgb(243, 198, 205);
    padding: 10px;
    justify-content: space-evenly;
}
.container > div {
    background-color: rgb(243, 198, 205);
    border: none;
    font-size: 30px;
    text-align: center;
}