
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #E2EFF3;
    color: #333;
}

#header {
    width: 100%;
    height: 100px;


}

.conteudo {
    padding: 100px ;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #0B1B54;
    height: 120px;
}

.logo {
    width: 200px;
    padding-left: 10%;

}
nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
   color: #fff;
   text-decoration: none;
   font-size: 18px;
   position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;

}
nav ul li a:hover::after {
    width: 100%;
}

.header-text {
    margin-top: 20%;
    font-size: 30px;
}
.header-text h1 {
    font-size: 60px;
    margin-top: 20px;
}
.header-text h1 span {
    color: #ff004f;
}


/* =============head===========================*/ 



body {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    margin: 0;
}
a {
    display: block;
    margin: 15px 0;
    padding: 15px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: #007BFF;
    border-radius: 5px;
    width: 300px;
}
a:hover {
    background-color: #0056b3;
    cursor: pointer;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    font-size: 20px;
}
button {
    padding: 15px;
    font-size: 20px;
    margin-top: 10px;
    cursor: pointer;
    background-color: aquamarine;
}

.container {
    padding: 2% 10% 10%;
   
}
.imprimir {
    padding: 10%;
    margin-top: 300px;
}
/* ========== Atividades ================*/
h1 {
    text-align: center;
    margin-bottom: 15px;
}
.area-atividade {
    padding: 10%;
    margin-top: 10px;
    
}


.area-atividade button {
    padding: 20px;
    margin-top: 50px;
    background-color: darkgreen;
    color: #FFF;
}
.card-text {
    padding: 20px;
}
.title {
    padding: 10px;
}
.body-text {
    padding: 10px;
}
.question {
    padding: 20px;
}
input[type=radio] {
    border: 0px;
    width: 40px;
    height: 40px;
    margin: 50px;
    vertical-align: middle;
}
.alternativas {
    padding: 20px;
}
.nome-aluno {
    width: 100%;
}

/*===============acerta imagem ======================*/
 
        .main {
            font-family: Arial, sans-serif;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f4f4f4;
        }
        .bloco {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
        .drop-zone {
            width: 300px;
            height: 350px;
            background-color: #f4f4f4;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
        
            margin-bottom: 20px;
        }
        .drop-zone img {
            max-width: 290px; 
            max-height: 340px;
            border: none; /* Remove borda da imagem */

        }

        #feedback {
            margin-top: 10px;
            font-size: 18px;
        }
        .term {
            margin: 10px;
            font-size: 18px;
            background-color: #2196F3;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .scoreboard {
            margin-top: 10px;
            font-size: 20px;
            font-weight: 600;
        }
        .info-bloco p {
            font-size: 12px;
        }
        .button-bloco {
           display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .info-bloco {
            text-align: center;
        }
        #print-bloco {
            display: none;
            margin-top: 10px;
        }
        #print-bloco input {
            font-size: 18px;
            padding: 5px;
            margin-right: 10px;
        }
        #print-bloco button {
            font-size: 18px;
            padding: 5px 10px;
            cursor: pointer;
        }
    
