.main-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 580px;
    min-width: 500px;
    background-color: #000000;
    padding: 1px;
    font-size: 20pt;
}

.gameContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#answer {
    margin-top: 40px;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    outline: 0;
    width: 200px;
    height: 30px;
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
}

#answer:focus {
    border: 1px solid #ccc;
}

.question {
    height: 100px;
    width: auto;
}

.finalRoundQuestion {
    font-size: 3rem;
    font-weight: bold;
    display: none;
    text-align: center;
    text-transform: uppercase;
}

.displayCorrectAnsText, .displayInCorrectAnsText {
    color: #fff;
    text-align: center;
    display: none;
}

.roundNumber {
    margin-left: 20px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    display: inline-block;
}

.result {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #fff;
    border-radius: 20px;
    width: 800px;
    text-align: center;
    display: none;
    font-size: 80%;
    line-height: 1.5;
    background-color: #fff;
    color: #000;
}

.game-wrapper {
    display: none;
}

.percent, .timeTaken {
    color: #0E78BC;
}

.instructions {
    padding: 20px;
    background-color: white;
    color: black;
    width: 80%;
    border-radius: 30px;
    font-size: 20pt;
    margin: 60px auto auto;
}

.continue-btn {
    background-color: #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
    margin: auto;
    padding: 10px;
    text-align: center;
    width: 140px;
    border: 0;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: white;
    display: none;
}