body {
    font-family: "https://fonts.google.com/specimen/Oswald/tester";
    background-color: #f7f7f790;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

header {
    background: linear-gradient(45deg, #7ce94a, #ff7a7a, #7aa3ff);
    color: white;
    padding: 10px;
    display: flex;
    /* Adiciona um display flex para alinhar os itens */
    align-items: center;
    /* Alinha os itens verticalmente ao centro */
}

.logo {
    max-width: 200px;
    height: auto;
    margin-right: 20px;
    /* Adiciona uma margem à direita para separar a logo do texto */
}

h1 {
    margin: 0;
    /* Remove a margem padrão do h1 */
    flex: 1;
    /* Permite que o texto ocupe o espaço restante */
    text-align: center;
    /* Centraliza o texto horizontalmente */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.student-info,
.grades-info,
.questions-info {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.student-info p,
.grades-info p,
.questions-info p {
    margin: 0 0 10px;
}

.question-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;

}

.question-info p {
    margin: 0 0 10px;

}

footer {
    background: linear-gradient(45deg, #7ce94a, #ff7a7a, #7aa3ff);
    color: white;
    text-align: center;
    padding: 2px;
}

.question-image {
    max-width: 70%;
    height: auto;
    margin: 0 auto 10px auto;
    /* Centraliza horizontalmente e adiciona margem inferior */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Estilos CSS para o input */
input[type="text"],
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: calc(35% - 5px);
    /* Calcula 50% do tamanho da largura menos a margem */
    box-sizing: border-box;
    margin-bottom: 10px;
    display: inline-block;
    /* Permite que os elementos fiquem lado a lado */
    vertical-align: middle;
    /* Alinha os elementos verticalmente */
}

/* Estilos CSS para o input */
input[type="text"] {
    margin-right: 10px;
    /* Adiciona um espaço entre o input e o select */
}

/* Estilos CSS para o select */
select {
    margin-left: 5px;
    /* Adiciona um espaço entre o input e o select */
}

/* Estilos CSS para o botão "Enviar" */
button[type="submit"] {
    padding: 10px 20px;
    /* Adiciona padding interno para melhorar o espaçamento */
    background: linear-gradient(45deg, #7ce94a, #ff7a7a, #7aa3ff);
    /* Cor de fundo verde */
    color: white;
    /* Cor do texto branco */
    border: none;
    /* Remove a borda */
    border-radius: 5px;
    /* Adiciona bordas arredondadas */
    cursor: pointer;
    /* Muda o cursor para indicar que o botão é clicável */
    font-size: 16px;
    /* Tamanho da fonte */
    display: block;
    /* Permite definir uma largura e centralizar */
    margin: 0 auto;
    /* Centraliza horizontalmente */
    width: 200px;
    /* Define uma largura fixa */
}

/* Estilo hover para o botão "Enviar" */
button[type="submit"]:hover {
    background-color: #eec07a;
    /* Cor de fundo mais escura quando hover */
}

/* Tela de preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: 160px;
    height: 100px;
    margin-left: -80px;
    margin-top: -50px;
    border-radius: 5px;
    background: #1e3f57;
    animation: dot1_ 3s cubic-bezier(0.55, 0.3, 0.24, 0.99) infinite;
}

.loader:nth-child(2) {
    z-index: 11;
    width: 150px;
    height: 90px;
    margin-top: -45px;
    margin-left: -75px;
    border-radius: 3px;
    background: #3c517d;
    animation-name: dot2_;
}

.loader:nth-child(3) {
    z-index: 12;
    width: 40px;
    height: 20px;
    margin-top: 50px;
    margin-left: -20px;
    border-radius: 0 0 5px 5px;
    background: #6bb2cd;
    animation-name: dot3_;
}

@keyframes dot1_ {

    3%,
    97% {
        width: 160px;
        height: 100px;
        margin-top: -50px;
        margin-left: -80px;
    }

    30%,
    36% {
        width: 80px;
        height: 120px;
        margin-top: -60px;
        margin-left: -40px;
    }

    63%,
    69% {
        width: 40px;
        height: 80px;
        margin-top: -40px;
        margin-left: -20px;
    }
}

@keyframes dot2_ {

    3%,
    97% {
        height: 90px;
        width: 150px;
        margin-left: -75px;
        margin-top: -45px;
    }

    30%,
    36% {
        width: 70px;
        height: 96px;
        margin-left: -35px;
        margin-top: -48px;
    }

    63%,
    69% {
        width: 32px;
        height: 60px;
        margin-left: -16px;
        margin-top: -30px;
    }
}

@keyframes dot3_ {

    3%,
    97% {
        height: 20px;
        width: 40px;
        margin-left: -20px;
        margin-top: 50px;
    }

    30%,
    36% {
        width: 8px;
        height: 8px;
        margin-left: -5px;
        margin-top: 49px;
        border-radius: 8px;
    }

    63%,
    69% {
        width: 16px;
        height: 4px;
        margin-left: -8px;
        margin-top: -37px;
        border-radius: 10px;
    }
}

/* Oculta o preloader suavemente */
.hidden {
    opacity: 0;
    transition: opacity 1s ease-out;
    pointer-events: none;
}

/* Página real */
#conteudo {
    display: none;
    text-align: center;
    padding: 50px;
}

/* CSS do botao iniciar prova */

.center-message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    /* Ajuste conforme necessário para o seu cabeçalho e rodapé */
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 20px;
    /* Para garantir que haja espaçamento nas laterais */
    text-align: center;
    /* Centraliza conteúdo dentro do card */
}

.card p {
    text-align: justify;
    margin: 0 0 20px;
    /* Espaçamento abaixo do parágrafo */
}

.card img {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    /* Arredonda os cantos da imagem */
    display: block;
    /* Garante que a margem automática funcione */
    margin: 0 auto 20px;
    /* Centraliza a imagem e adiciona espaçamento abaixo */
}

.card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
    margin-top: 20px;
    /* Espaçamento acima do botão */
}

.card a.enabled {
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
}

.card a.enabled:hover {
    background-color: #0056b3;
}