body {
    background:rgba(30,30,40,.9);
    justify-content: center;
    align-items: center;
    height: 100%;
}
p, input, .singleCharacter, button {
    font-family: monospace, bold;
    font-size: 80px;
}
.scoreContainer {
    text-align: center;
    font-size: 48px;
    color: red;
}
.streakContainer {
    text-align: center;
    font-size: 48px;
    color: rgb(60, 162, 75);
}
.singleCharacter {
    width: 55px;
    text-align: center;
    border: 1px;
    border-radius: 9px;
    background-color: #ffffff;
    color:rgb(26, 23, 19);
    outline: rgb(124, 124, 124) 3px solid;
    margin: 0 4px;
}
.singleCharacter:focus {
    outline: 0px;
    background-color: rgb(199, 162, 27);
    caret-color: transparent;
}
button {
    background-color: aliceblue;
    border: 0px;
    padding: 25px;
    border-radius: 15px;
    min-width: 500px;
    height: 120px;
    font-size: 60px;
    font-family: 'Spline Sans Mono', monospace;
}
button:focus {
    outline: 0px;
    background-color: rgba(185, 157, 21, 0.9);
    
}
.textAndButtonContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    padding: 20px;
    border: #c59108 solid 5px;
    border-radius: 27px;
    background-color: #ffffff;
    margin: 60px 30%;
}
.timerBar {
    background: rgb(209, 146, 43);
    height: 20px;
    display: inline-block;
    animation-name: timerBar;
    position: relative;
    align-items: center;
    border-radius: 30px;

}