body {
    font-family:Verdana;
    height:100%;
}
#content {
    display:flex;
    align-items:left;
    justify-content:center;
    margin:30px;
}
main {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    height:100%;
    width:60%;
}
aside {
    width:20%;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.item {
    display:flex;
    flex-direction:column;
    padding:15px;
    margin:10px;
    background-color:lightblue;
    width:150px;
    text-wrap-mode:nowrap;
    user-select:none;
}
    .item p {
        pointer-events:none;
    }
.title {
    display:flex;
    flex-direction:column;
    background-color:gray;
    color:white;
    font-size:25px;
    font-weight:600;
    text-align:center;
    margin:10px;
    padding:10px;
    width:200px;
    user-select:none;
}
#mine {
    background-color:gold;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:30px;
    width:300px;
    height:300px;
    aspect-ratio:1/1;
    font-size:50px;
    font-weight:700;
    user-select:none;
}
#sell {
    background-color:lightgreen;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:30px;
    width:300px;
    height:300px;
    aspect-ratio:1/1;
    font-size:50px;
    font-weight:700;
    user-select:none;
}
.metric {
    display:flex;
    flex-direction:column;
    padding:10px;
    margin:5px;
    width:150px;
    text-wrap-mode:nowrap;
    user-select:none;
    background-color:royalblue;
    color:white;
}
#buttons {
    display:flex;
    justify-content:center;
    align-items:center;
    margin:30px;
}
.resource {
    background-color:lightblue;
}
.miningupgrades {
    background-color:lightpink;
}
.sellingupgrades {
    background-color:lightpink;
}
#chat {
    margin:30px;
    padding:10px;
    max-height:25vh;
    width:700px;
    display:flex;
    overflow-y:scroll;
    background-color:rgba(211, 211, 211, 0.342);
}
    #chat p {
        padding:0;
        margin:5px;
        text-align:left;
    }
h2 {
    padding:0;
    margin:0;
}