@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body {
    background-color: gray;
    font-family: 'JetBrains Mono';
    color: white;
    text-align: center;
}

button {
    font-family: 'JetBrains Mono';
}

button:hover {
    background-color: white;
    color: black;
    border-color: black;
}

.tab {
    color: white;
    background-color: black;
    border: 2px solid darkgray;
    height: auto;
    width: fit-content;
    border-radius: 5px;
    min-width: 100px;
    min-height: 30px;
}

.BuyableBtn {
    color: white;
    background-color: black;
    border: 2px solid darkgray;
    height: auto;
    width: 300px;
    border-radius: 5px;
}

.ResetLayerBtn {
    color: white;
    background-color: black;
    border: 2px solid purple;
    height: 80px;
    width: 500px;
    border-radius: 5px;
}

.achievement {
    color: white;
    border: 2px solid black;
    height: 100px;
    width: 100px;
    border-radius: 5px;
}

.milestone {
    color: white;
    border: 2px solid black;
    height: 60px;
    width: 99%;
    border-radius: 5px;
}

.ChallengeBtn {
    color: white;
    background-color: black;
    border: 2px solid darkgray;
    height: 200px;
    width: 200px;
    border-radius: 5px;
    vertical-align: top;
}

.UpgradeBtn {
    color: white;
    background-color: black;
    border: 2px solid darkgray;
    height: 150px;
    width: 150px;
    border-radius: 5px;
}

.UpgTreeResetBtn {
    color: white;
    background-color: black;
    border: 2px solid darkgray;
    height: 150px;
    width: 600px;
    border-radius: 5px;
}

.UpgRow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
    body {
        width: 80%;
        height: 80%;
    }
}