* {
    box-sizing: border-box;
    font-family: "Inter";
}

body {
    min-height: 100vh;
    margin: 0;
    background-color: rgb(58, 6, 58);
}

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

#menu {
    flex-direction: column;
    justify-content: center;
}
#title {
    padding: 1% 1% 1% 1%;
    background-color: #62008F;
    border-radius: 50px;
    border: 5px solid #F9ACAC;
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.25);
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 5%;
    margin-bottom: 5%
}

#menu-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}



#title h1 {
    text-align: center;
    font-size: 100pt;
    color: white;
    font-family: "Inter";
    margin-top: 2.5%;
    margin-bottom: 2.5%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: azure;
    border-radius: .5rem;
    width: 85%;
}

.timer {
    /* position: absolute; */
    top: 2rem;
    font-size: 3rem;
    color: aquamarine;
    font-weight: bold;
}

.container {
    border: 5px solid #F9ACAC;
}

.quote-display {
    margin-bottom: 1;
    margin-left: calc(1rem + 2px);
    margin-left: calc(1rem + 2px);
    padding: 5%;
    min-width: 50%;
}


span {
    font-size: 22pt;
}

.quote-input {
    background-color: transparent;
    border: 2px solid #000;
    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;
}

.correct {
    color: green;
}

.incorrect {
    color: red;
}

#canvas-section {
    justify-content: center;
    flex-direction: column;
    padding: 1%;
    background-color: white;
}

#can {
    background-color: white;
    border-style: solid;
}

#user-area {
    margin-top: 1%;
    width: 115%;
    min-width: 75%;
}

#input-result {
    font-size: 26pt;
}

#game {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-basis: auto;
    margin-left: 10%;
    margin-right: 10%;
}

#user-button {
    margin-top: 2%;
    margin-bottom: 2%;
}

button {
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    padding-left: 100px;
    padding-right: 100px;
    margin-top: 0.5%;
    margin-bottom: 1%;
    background: #240035;
    box-shadow: 0px 2px 10px rgba(169, 145, 220, 0.4);
    border-radius: 50px;
    border: 5px solid #F9ACAC;
    color: white;
    font-size: 12pt;
}

button:hover {
    background: #4f0074;
}

button:active {
    background: #F9ACAC;
}

#input-result {
    height: 75px;
}

.hidden {
    display: none !important;
}


#progress-bars p {
    padding-right: 5px;
}

progress {
    padding-top: 15%;
    height: 5px;
}

#progress-bars div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 1%;
}

#progress-bars {
    margin-top: 1%;
    flex-direction: row;
}

#queue div, #lost div, #won div {
    margin-top: 15%;
    width: 100%;
    padding: 2%;
    margin-bottom: 0;
}

#queue p, #queue span {
    font-size: 24pt;
}

#queue h1, #lost h1, #won h1 {
    font-size: 34pt;
}

