*{
    box-sizing : border-box;
}

body{
    display : flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    /* margin : 0; */
    background-color: #1E0555;

}

 .quote-input{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.container {
    background-color: #f0db4f;
    padding: 1rem;
    border-radius:.5rem ;
    width :  700px;
    max-width: 95%;
}

.timer{
    position: absolute;
    top:6rem;
    font-size: 3rem;
    color: #f0db4f;
    font-weight: bold;
     
}

.quote-display{
    margin-bottom: 1em;
    margin-left: calc(1rem + 2px);
    margin-right:calc(1rem + 2px);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
}


.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: 0.5rem;
}

.quote-input:focus{
    border-color: black;
}

.correct{
    color: green;
}
.incorrect{
    color: red;
    text-decoration: underline;
}
.score{
    display: block;
    width: 0;
    margin: auto;
}