body {
    color: #333333;
    font-family: 'Comfortaa', cursive;
    line-height: 250%;
    height: 100vh;
    width: 100vw;
    margin: 0 auto;
    left: 0;
    top: 0;
}

h4 {
    position: relative;
    line-height: 150%;
    text-align: center;
    color: #333333;
}

#playButton {
    width: fit-content;
    padding: 24px;
    margin: 0 auto;
    display: flex;
    background-color: rgb(218, 93, 71);
    color: #fff;
}

.title,
.subtitle {
    text-align: center;
}

.hero {
    margin-bottom: 4vh;
    height: 300px;
}

.box {
    width: 50vw;
    margin: 0 auto;
    text-align: center;
}

#gameOverPosition {
    width: 100vw;
    height: 100vh;
    visibility: hidden;
}

#gameOverScreen {
    width: 100vw;
    margin: 0 auto;
    position: relative;
    background-color: #ffffff;
    color: #333333;
    visibility: hidden;
    z-index: 1;
}

.game-over-text,
p {
    text-align: center;
    line-height: 150%;
}

h1.game-over-text {
    font-size: 62px;
}

h2.game-over-text {
    font-size: 36px;
}

p {
    font-size: 24px;
}

.answerBlock {
    min-height: fit-content;
    margin: 0 auto;
}

#timeIsUp,
#rightAnswer,
#wrongAnswer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    width: 50%;
    top: 0;
    background-color: #333333;
    color: #ffffff;
    display: none;
    border-radius: 25px;
}

.objImage {
    width: 100%;
    margin: 0 auto;
    border-radius: 25px;
}

#timer {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
    background-color: rgb(218, 93, 71);
    color: #fff;
}

#countdown {
    padding-top: 20px;
    font-size: 42px;
    font-weight: 600;
}

#footer {
    background-color: #ffffff;
    text-align: center;
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 10px;
}