*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #121212;
    font-family: helvetica;
    
    color: white;

}

.outerBox{
    margin-top: 10vh;
    border: 1.5px solid white;
    width: 400px;
    height: 400px;
    margin-inline: auto;
    background-color:#1e1e1e;
    border-radius: 10px;
}

.outerBox h2, p{
    margin-top: 2vh;
    text-align: center;
}

.displayQuestion{
    border: 2px solid white;
    width: 80%;
    height: 16vh;
    margin-inline: auto;
    margin-top: 2vh;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a2a2a;
    border-radius: 10px;
}

.takeInput{
    margin-top: 2vh;
    margin-inline: auto;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.myInput{
    text-align: center;
    margin-top: 15vh;
    height: 5vh;
}

.roundNumber, .score{
    margin-block: 2vh;
    text-align: center;
}

.submitButton{
    display: block;
    margin-inline: auto;
    margin-block: 2vh;
    width: 50%;
    height: 5vh;
    border: none;
    background-color: green;
    color: white;
    border-radius: 5px;
}

.playAgain{
    text-align: center;
    background-color: green;
    width: 7vw;
    border-radius: 5px;
    margin-top: 2vh;
    cursor: pointer;
}