/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    
}

div#preload { display: none; }

.quiz-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 40%;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.quiz-card {
    width: 100%;
    text-align: center;
}

.result-gif {
    max-width: 60%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.quiz-image {
    max-width: 60%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.quiz-init-title {
    font-size: 3vh;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.quiz-init-bold {
    font-size: 2vh;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.quiz-init {
    font-size: 2.5vh;
    margin-bottom: 20px;
    color: #333;
}
.quiz-question {
    font-size: 2.5vh;
    margin-bottom: 20px;
    color: #333;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-buy-button {
    text-decoration: none;
    text-align: center;
    background-color: #4CAF50;
    color: white;
    font-size: 2.4vh;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.quiz-buy-button:hover {
    text-decoration: none;
    text-align: center;
    background-color: #45a049;
    color: white;
    font-size: 2.5vh;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}


.quiz-button {
    background-color: #4CAF50;
    color: white;
    font-size: 2.3vh;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quiz-button:hover {
    background-color: #45a049;
}

.quiz-back {
    margin-top: 20px;
    background-color: #808080;
    color: white;
    font-size: 2.3vh;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quiz-back:hover {
    background-color: #555555;
}

/* Estilos responsivos */

@media screen and (max-width: 1200px) and (min-height: 812px)  {
    .quiz-container {
        padding: 1em;
	max-width: 95%;
    }
    .result-gif {
        max-width: 80%;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .quiz-image {
        max-width: 80%;
        border-radius: 10px;
        margin-bottom: 20px;
    }


}
.quiz-result {
    text-align: center;
    font-size: 2.3vh;
    margin-bottom: 20px;
}

.quiz-result-desc {
    font-style: italic;
    text-align: left;
    font-size: 2.3vh;
    margin-bottom: 20px;
}
.loading-gif {
    width: 20%; /* Ajuste o tamanho conforme necessário */
    margin-top: 10px;
}