body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background-image: url('../img/fundo.png');
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
}

.quiz-container {
    width: 360px;
    min-height: 720px;
    background: #f4ecd8;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

#quiz-content {
    margin: auto 0;
}

#next-btn {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}


.decoracao-img {
  display: block;
  margin: 0 auto 20px auto; 
  max-width: 250px; 
  height: auto;
}


.biblia {
    display: flex;
    justify-content: center;
}

h1 {
    color: #6B8E23; 
    text-align: center;
}

.question {
    font-weight: bold;
    margin: 20px 0;
    color: #bc8a5f; 
}

.option {
    padding: 10px;
    margin: 8px 0;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
}

.option:hover {
    background-color: #e0e0e0;
}

.correct {
    background-color: #6B8E23;
    color: white;
}

.incorrect {
    opacity: 0.3;
}

button, .start-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #bc8a5f; 
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

button:hover, .start-btn:hover {
    background-color: #6B8E23; 
}

.hidden {
    display: none;
}

#result {
    text-align: center;
    margin: 20px 0;
}