:root {
    --text1: 'Anton';
    --text2: 'Oswald';
    --bg-color: #f5e9ce;
    --color1: #f49f2f;
    --color2: #950000da;
    --text-color: #222124;
    background-color: var(--bg-color)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    font-family: var(--text2);
    color: var(--text-color);
    line-height: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    font-size: 3rem;
    font-weight: 700;
    background-color: var(--color2);
    padding: 5rem 5rem 20rem 5rem;
}

header button {
    font-family: var(--text2);
    background: none;
    color: var(--text-color);
    font-weight: 700;
    margin: 0;
    align-items: center;
}

header i {
    margin: 0 1rem 0 0;
    font-size: 2rem;
    color: var(--text-color);
}

i {
    font-size: 3rem;
    color: var(--color1);
    margin: 0 auto 2rem auto;
}

.container {
    width: 75%;
    height: 55rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 4rem;
    margin: auto;
    margin-top: -10rem;
    background-color: white;
    padding: 5rem;
    border-radius: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 4rem;
    font-family: var(--text1);
    font-size: 5rem;
    line-height: 5rem;
}

h2 {
    font-size: 3rem;
    margin-top: 2rem;
    line-height: 3rem;
}

.desc {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    line-height: 3rem;
}

button {
    width: fit-content;
    height: 4rem;
    margin: 0 auto;
    font-family: var(--text1);
    font-size: 2rem;
    padding: 0 2rem;
    border: none;
    border-radius: 6px;
    background-color: var(--color1);
    color: white; 
}

button:hover {
    cursor: pointer;
}

#quiz-screen {
    padding-top: 3rem;
}

.count-down {
    display: flex;
    justify-content: flex-end;
    font-size: 1rem;
    font-weight: 700;
}

.count-down i {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    font-size: 2rem;
    color: var(--color2);
}

#time-remaining {
    font-size: 1.75rem;
    padding-left: .5rem;
    margin-right: -2rem;
    display: flex;
    font-family: var(--text1);
}

#answers {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: start;
    justify-content: space-between;
    margin: 7rem 0 1rem 0;
}

#answers .btn {
    margin: .65rem 0;
    width: 40rem;
    text-align: left;
}

#result {
    visibility: hidden;
}

h3 {
    color: var(--color2);
}

hr {
    background-color: var(--color2);
    opacity: 50%;
    width: 40rem;
    margin-bottom: .5rem;
}

.initials-field {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.initials-field input {
    height: 4rem;
    font-size: 2rem;
}

.initials-field .desc {
    margin-right: 1rem;
}

.initials-field .desc {
    margin-top: 0.5rem;
}

.initials-field .btn {
    margin: 0 1rem;
}

.highscores-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.highscores-title h2{
    margin: 0;
}

.highscores-title i {
    margin: 0;
    padding: 0;
}
