/* Base Classes */
* {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    margin: 0;
    background-color: rgb(22, 22, 22);
}

h1 {
    text-align: center;

    font-size: 50px;
}


.info  {
    display: block;
    position: absolute;
    bottom: 3px;
    left: 20px;
    color: gray;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 18px;
}

.Option {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    width: 80px;
    font-size: 35px;
    color: rgb(112, 112, 112);
    user-select: none;
}

.Option:hover {
    color: rgb(194, 194, 194);
    cursor: pointer;
}

.Option.Active {
    color: rgb(255, 255, 255);
}

.Option:active {
    color: white;
}

.Option.Active:hover {
    color: rgb(194, 194, 194);
}

.Option.Active:active {
    color: rgb(112, 112, 112);
}

.Stats {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    width: 200px;
    font-size: 24px;
    color: rgb(231, 231, 231);
    
}

.Stats:not(:last-child) {
    border-right: solid 2px rgb(92, 92, 92);
}

#OptionBox {
    margin-top: 20px;
    width: fit-content;
    display: block;
    margin-left: calc(50vw - 204px);
}

#StatBox {
    margin-top: 50px;
    width: fit-content;
    display: block;
    margin-left: calc(50vw - 510px);
}

#LetterBox {
    position: relative;
    display: block;
    margin-left: calc(50vw - 100px);
    margin-top: 50px;
    width: 200px;
    height: 200px;

    background-color: rgb(32, 32, 32);
    border-radius: 100%;
}

#Letter {
    position: absolute;
    text-align: center;
    width: 200px;
    user-select: none;

    vertical-align: middle;
    font-family: Consolas;
    font-size: 150px;
    font-style: normal;
    font-weight: bold;
}

#MobileInput {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: none;
    border: none;
    z-index: 5;
    color: rgba(0, 0, 0, 0);
}
#MobileInput:focus {
    outline: none;
}
#story {
    display: block;
    width: 95%;
    max-width: 800px;
    margin: 50px auto;
    margin-top: 100px;
}
#story h3 {
    text-align: left;
    font-size: 30px;
    margin: 5px 0px;
}
#story p {
    margin: 0px;
    font-size: 20px;
}

#bloglink {
    display: block;
    position: absolute;
    width: fit-content;
    top: 0px;
    right: 40px;
    text-decoration: none;
    color: rgb(185, 185, 185);
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
}
#bloglink:hover {
    color: white;
}

#invalidSize {
    display: none;
}

#chartype {
    margin-top: 5vh;
}

@media screen and (max-width: 1100px), (max-height: 650px) {
    #invalidSize {
        display: block;
    }
    #chartype {
        display: none;
    }
}