
 /* ARRIBA EN EL TITULO */
 
 
#contenido {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--fondo);
}

#imagen_inicio {
	pointer-events: none;
	user-select: none;
	width: 100%;
	position: absolute;
}

#imagen_dron_inicio {
	position: absolute;
	top: 6vw;
	left: 55vw;
	width: 45vw;
}

#seccion {
    border-top: var(--border);
	padding: 4rem 15rem 4vw 15rem;
}

#seccion hr {
    border: solid white 1px;
}

#seccion .examen {
    box-sizing: border-box;
    padding: 1.5rem 1rem;
    position: relative;
    text-decoration: none;
    width: 100%;
    height: auto;
    color: var(--color_p);
    border-radius: 0.5rem;
    border: var(--border);
}

#seccion .examen:hover {
    background: white;
    color: black !important;
}

#seccion h2 {
	font-size: 2.2rem;
	margin-top: 1rem;
}

#seccion h3 {
    margin-top: 1vw;
	font-size: 2rem;
	margin-right: 1vw;
}

#seccion p {
	font-size: 1.5rem;
}

 /* TEXTO */
#tipos {
    width: 100%;
    
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

#tipos button {
    cursor: pointer;
    width: 33%;
    border: var(--border);
    background: transparent;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--color_p);
    font-weight: 900;
    font-size: 1.5rem;
}

#tipos button:hover {
    background: white;
    color: black;
}

.tipo {
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    position: relative;
    border: solid grey 1px;
    font-weight: 900;
    font-size: 1.5rem;
}

.a1a3 {
    background: #FF6C67;
}

.a2 {
    background: #9F005F;
}

.sts {
    background: #FBBC39;
}

#buscador {
    width: 100%;
    margin-bottom: 1rem;
}

#preguntas {
    gap: 1rem;
    flex-direction: column;
    display: flex;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}


/* RESPONSIVE */
@media (max-width: 800px) {
	#seccion {
	    padding: 1rem;
	}

}