.game {
    background-color: rgb(134,98,70);
    width: 90%;
    height: fill;
    z-index: 1;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 20px solid rgb(200,179,151);
    border-radius: 20px;
    padding-bottom: 100px
}
.display {
    height: fill;
    margin: auto;
    margin-top: 2%;
    margin-bottom: 5%;
    justify-content: center;
    display: flex;
}
.output {
    transition: 0.1s;
    border: 10px solid rgb(190,156,70);
    width: 280px;
    height: 520px;
    background-image: radial-gradient(circle farthest-side at 50% 90%, rgb(250,50,20), rgb(180,30,10));
    margin: 15px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}
.nameplate {
    width: 100%;
    height: 30px;
    z-index: 1;
    background-color: rgb(247,211,146);
    margin: auto;
    margin-top: 490px;
    border: 10px solid rgb(247,211,146);
    margin-left: -10px;
    cursor: default;
}
.nameplate-text {
    font-size: 21px;
    margin: auto;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-shadow: 1px 1px #000000, -1px 1px #000000, 1px -1px #000000, -1px -1px #000000;
    margin-top: 2px;
    cursor: default;
}
.stats-box {
    width: 80%;
    background-color: rgb(190,156,70);
    text-align: left;
    margin: auto;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 15px;
    border-radius: 10px;
    border: 10px solid rgb(247,211,146);
}
.stats-text {
    color: #ffffff;
    margin-top: 10px;
    font-size: 20px;
    cursor: default;
}
.stats {
    display: block;
    margin: 15px;
}
.button-box {
    display: flex;
    justify-content: center;
}
.button {
    width: 25%;
    height: 100px;
    cursor: pointer;
    display: inline-block;
    border-radius: 10px;
    margin-left: 40px;
    margin-right: 40px;
    color: #ffffff;
    font-weight: bold;
    font-size: 40px;
    padding: 25px;
    text-align: center;
    text-anchor: middle;
}
.single-roll {
    background-color: rgb(0,255,0);
}
.triple-roll {
    background-color: rgb(0,0,255);
}
.cover {
    display: inline-block;
    visibility: hidden;
    margin: auto;
    position: fixed;
    background-color: #000000;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 950px) {
    .cover {
        visibility: visible;
    }
}
.collapse {
    margin: auto;
    display: inline-block;
    background-color: rgb(255,0,0);
    margin-top: -30px;
    margin-bottom: -30px;
    width: 500px;
    height: 60px;
    padding-top: 40px;
}
.advanced-stats {
    display: none;
}
.stats-divider {
    margin: auto;
    color: #ffffff;
    font-weight: bolder;
    font-size: 30px;
}
.reset {
    background-color: rgb(15, 180, 15);
    height: 50px;
    margin-bottom: 50px;
    margin-top: -35px;
}