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

html {
    height: 100%;
}

body {
    background: linear-gradient(to top, #111, black);
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
    margin: 0;
}

.abilityScores {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
}

.abilityScores div:not(.top, .center, .bottom) {
    padding: 5px;
    border: double 2px white;
    border-radius: 10px;
    width: 70px;
    height: 80px;
    font-family: "Roboto";
    position: relative;
    background-color: rgb(34, 34, 34, 0.75);
    margin-left: 5px;
    margin-right: 5px;
}

.abilityScores div div.top {
    font-family: "Roboto Condensed";
    border: none;
    color: white;
    position: absolute;
    width: 100%;
    lefT: 0px;
    top: 0px;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
    text-align: center;
}

.abilityScores div div.center {
    font-family: "Roboto Mono";
    border: solid 1px white;
    color: white;
    position: absolute;
    width: 100%;
    text-align: center;
    top: 17.5px;
    left: 5px;
    width: calc(100% - 12px);
    right: 5px;
    height: 50px;
    line-height: 50px;
    font-size: 36px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}

.abilityScores div div.bottom {
    font-family: "Roboto Mono";
    border: solid 2px white;
    color: white;
    position: absolute;
    bottom: -7.5px;
    left: 15x;
    right: 15px;
    width: calc(100% - 34px);
    text-align: center;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
    background-color: #222;
    border-radius: 5px;
}

pre {
    background-color: #333;
    color: white;
}