#container {
    max-width: 500px;
    min-width: 200;
    margin-left: auto;
    margin-right: auto;
    height: 500px;
    background-color: cornflowerblue;
    margin-top: 30px;
    border-style: groove;
    border-color: greenyellow;
    overflow: hidden;
}

body {
    justify-content: center;
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
}

#screen {
    width: 100%;
    height: 400px;
    margin-top: 4px;
    background-color: aqua;
}

#counter {
    width: inherit;
    height: 70px;
    background-color: brown;
    text-decoration: solid;
    color: yellow;
    font-size: large;
}

#title {
    background-color: black;
    width: 100%;
    height: 25px;
    text-align: center;
    text-decoration: solid;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-style: normal;
    font-size: x-large;
}

#inputing {
    width: 100%;
    height: 395px;
    text-align: initial;
    text-transform: uppercase;
    overflow: hidden;
    caret-color: tomato;
}

#char,
#words,
#sentence {
    width: 30px;
    pointer-events: none;
    background-color: beige;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: black;
}

body {
    background-color: indianred;
}