*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: #1E0555;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body,
.quote-input {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.timer {
    position: absolute;
    top: 2rem;
    color: #F0DB4F;
    font-size: 3rem;
    font-weight: bold;
}

.container {
    background-color: #F0DB4F;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-radius: .5rem;
    width: 700px;
    max-width: 90%;
}

.quote-display {
    margin-bottom: 1rem;
    margin-left: calc(1rem + 2px);
    margin-left: calc(1rem + 2px);
}

.correct {
    color: green;
}

.incorrect {
    color: red;
    text-decoration: underline;
}

.quote-input {
    background-color: transparent;
    border: 2px solid #A1922E;
    outline: none;
    width: 100%;
    height: 8rem;
    margin: auto;
    resize: none;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: .5rem;
}

.quote-input:focus {
    border-color: black;
}