/* Estilo da página */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

.logo{
    width: 500px;
    padding-bottom: 50px;
}

.quiz-container {
    background-color: #000;
    border-radius: 10px;
    /* box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); */
    padding: 30px;
    width: 400px;
    text-align: center;
}

#start-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#start-screen h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

#quiz {
    display: none;
}

#question {
    margin-bottom: 20px;
    font-size: 20px;
}

.answers {
    margin-bottom: 20px;
}

.answer {
    padding: 10px;
    background-color: #333;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: row;
    display: flex;
    justify-content: space-between; /* Espaço entre o texto e o emoji */
    align-items: center; /* Centraliza verticalmente */
}

.answer:hover {
    background-color: #555;
}

.emoji {
    font-size: 34px; /* Aumenta o tamanho do emoji */
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 19px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

h4{
    margin-top: -15px;
    color: #eeeeee;
    font-weight: 200;
}

.progress-bar-container {
    width: 100%;
    background-color: #333; /* Cor do fundo da barra */
    border-radius: 5px;
    overflow: hidden; /* Para que a barra não ultrapasse o contêiner */
    height: 20px; /* Altura da barra de progresso */
    margin-bottom: 20px; /* Espaço abaixo da barra */
}

.progress-bar {
    height: 100%;
    width: 0; /* Começa em 0% */
    background-color: #007bff; /* Cor da barra de progresso */
    transition: width 0.3s ease; /* Transição suave */
}

/* Estilização do formulário final */


h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

p {
    font-size: 16px;
    margin-top: 15px;
    color: #ffffff;
}

input[type="radio"] {
    margin: 5px;
    transform: scale(1.2);
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

