* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Questrial', sans-serif;
}

h1 {
    color: white;
    font-family: 'VT323', monospace;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 100px;
    padding-top: 40px;
}

h2 {
    font-size: 80px;
    color: #1fc8db;
    margin: 20px 0;
}

p {
    color: rgb(2, 2, 26);
    font-size: 18px;
}

header, footer {
    text-align: center;
    margin: 0;
    background-image: linear-gradient(141deg, #9fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
    opacity: 0.95;
}

header {
    min-height: 190px;
}

footer {
    min-height: 50px;
}

footer p {
    padding: 20px;
    color: white;
}

.container {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

.container-text, .container-timer, .container-score, .container-buttons {
    width: 100%;
    text-align: center;
}

.container-text {
    display: flex;
    justify-content: center;
}

.text-example, .typing-area {
    width: 30%;
    text-align: left;
}

.text-example {
    margin: 10px 50px;
}
.typing-area {
    margin: 0 50px;
}

.container-score {
    display: flex;
    margin: 15px 0 0 0;
    min-height: 50px;
    font-size: 50px;
    color: #1fc8db;
}

#speed, #accuracy, #mistakes {
    width: 33%;
}

.typing-area textarea {
    color: black
}

textarea {
    outline: none;
    resize: none;
    font-size: 18px;
    border: solid 1.5px #1fc8db;
    background-color: transparent;
}

button {
    background-color: #1fc8db;
    border: none;
    padding: 15px 40px;
    margin: 20px;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
}

    
