body {
    background-image: url(./img/background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.quiz-card {
    width: 30rem;
    padding: 10px;
    background-color: rgba(212, 126, 46, 0.7) !important;
    color: white !important;
}

.quiz-answer-card {
    background-color: rgba(179, 100, 27, 0.7) !important;
    color: white !important;
    font-size: 18px;
}

.quiz-answer-card:hover {
    cursor: pointer;
    filter: drop-shadow(1px 1px 5px white);
}

.question-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px 0 10px;
    border-top: solid 1px rgba(0, 0, 0, 0.4);
}

.d-none {
    display: none;
}

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

.end-img {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.endScreen{
    z-index: 1;
    font-size: 20px;
}

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