<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section.hoja-bloc {
	font-size: 100%;
	--color-curso: #32bdcd;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

section.hoja-bloc .bloc {
	width: 60%;
	max-width: 700px;
	margin: 2em auto;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
	border-radius: 0 0 10px 10px;
	overflow: hidden;
}

section.hoja-bloc .bloc .superior {
	width: 100%;
	height: 50px;
	background: var(--color-curso);
	border-radius: 5px 5px 0 0;
}

section.hoja-bloc .bloc .papel {
	--paper-color: #f1ede9;
	--paper-line: #94acd4;
	/* width: 95%; */
	height: 100%;
	padding: 40px 20px;
	background: repeating-linear-gradient(var(--paper-color), var(--paper-color) 31px, var(--paper-line) 31px, var(--paper-line) 32px);
	line-height: 32px;
	outline: 0;
}

section.hoja-bloc .bloc .papel ul li {
	margin-inline-start: 1em;
	margin-bottom: 0;
}

section.hoja-bloc .bloc .papel .imagenPie {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 2em;
}

section.hoja-bloc .bloc .papel .imagenPie img {
	width: 64%;
	max-width: 600px;
}

section.hoja-bloc .bloc .papel .imagenPie p {
	font-size: 0.75em;
	text-align: center;
	margin-top: 1em;
	overflow-wrap: anywhere;
}

@media (max-width: 767px) {
	section.hoja-bloc {
		margin: 0;
	}

	section.hoja-bloc .bloc {
		width: 80%;
	}

	section.hoja-bloc .bloc .papel .imagenPie img {
		width: 97%;
	}
}</pre></body></html>