﻿:root{
    background-color: rgb(0 0 0)
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 62.5%;
}

h1{
    font-size: 5.4rem;
    color: aliceblue;
    margin-bottom: 5rem;
}

p1{
    font-size: 4.2rem;
    color: aliceblue;
    margin-bottom: 4rem;
}

a {
    font-size: 4.2rem;
    color: aliceblue;
    margin-bottom: 4rem;
}

.container{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.flex-center{
    justify-content: center;
    align-items: center;
}

.justify-center{
    justify-content: center;
}

.text-center{
    text-align: center;
}

.hidden{
    display: none;
}

.btn{
    font-size: 2.4rem;
    padding: 2rem 0;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: black;
    background: linear-gradient(90deg, white, white);
    border-radius: 4px;
}

.btn:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgb(255, 255, 255);
    transition: transform 150ms;
    transform: scale(1.03);
}

.btn[disabled] :hover{
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.question{
    font-size: 4.2rem;
    color: aliceblue;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.answer{
    font-size: 2.5rem;
    color: black;
    margin-bottom: 3rem;
    resize: none;
    cursor:text;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border-radius: 15px;
}
.progressText{
    color: aliceblue;
    font-size: 27pt;
}
.submit{
    font-size:45pt;
    margin-left: 850px;
    width: 15rem;
    margin-bottom: 1rem;
}

#hud{
    display: flex;
    justify-content: space-between;
}

.hud-prefix{
    text-align: center;
}

.hud-main-text{
    text-align: center;
}

#progressBar{
    width: 20rem;
    height: 3rem;
    border: 0.2rem solid greenyellow;
    margin-top: 2rem;
    border-radius: 50px;
    overflow: hidden;
}

#progressBarFull{
    height: 100%;
    background: greenyellow;
    width: 0%;
}
