body {
    position: fixed;
    margin: 0;
    overflow: hidden;
}

h2 {
    font-size: 4rem;
    line-height: 4.5rem;
    margin: 0;
}

h3 {
    font-size: 1.5rem;
}

label {
    font-size: 1.5rem;
    line-height: 2.15rem;
}

input {
    float: right;
    width: 10rem;
    margin-left: 1rem;
    padding-bottom: 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: none;
    border: none;
    border-bottom: 2px solid #f23853;
    outline: none;
}

.pregame-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    padding: 4rem;
    background: #fff;
    box-shadow: 1rem 1rem 0 rgba(0,0,0,1);
}

.pregame-card > * {
    font-family: 'Poppins', sans-serif;
}


.start-game-input {
    margin-top: 4rem;
    padding: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background-color: #111;
    cursor: pointer;
}

.pregame-card-scroll-container {
    overflow: hidden;
}

.pregame-card-scroll {
    max-height: 50vh;
    width: calc(100% + 17px);
    padding-bottom: 2px;
    overflow-y: scroll;
}

.tier-container {
    position: relative;
    width: calc(100% - 17px);
    box-sizing: border-box;
    margin-top: 4rem;
    padding: 2rem;
    border: 2px solid rgba(0,0,0,0.25);
    border-radius: 0.5rem;
}

.tier-container > .question-item:nth-child(2) {
    margin-top: 0;
}

.tier-title {
    position: absolute;
    top: -1.5rem;
    padding: 0 1rem;
    font-size: 2rem;
    font-weight: 700;
    background-color: #fff;
}

.question-item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.postgame-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    background: #fff;
    box-shadow: 1rem 1rem 0 rgba(0,0,0,1);
}

.postgame-card > * {
    font-family: 'Poppins', sans-serif;
}

.score-container {
    padding: 4rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.score {
    font-size: 8rem;
    margin: -2rem 0 -2rem 0;
}

.postgame-message {
    margin-top: 3rem;
    font-size: 1.5rem;
}

.postgame-button {
    width: 100%;
    padding: 1rem 0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.postgame-button:hover {
    color: #fff;
}

.retry-button {
    background-color: #f2dc41;
}

.info-button {
    background-color: #43efa1;
}

.quit-button {
    background-color: #f23853;
}