#bloque-fondo {
	background-color: #F2F2F2;
	padding: 1em 2em;
	font-size: 1em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 1em;

	#dibujo_sara {
		width: 40vw;
		max-height: 20em;
	}

	a {
		display: block;
		color: grey;
		text-decoration: none;
	}
	a:hover, a:visited {
		color: grey;
		text-decoration: none;
	}
}

/* DESKTOP */
@media (min-width: 992px) {
	#bloque-fondo {
		padding: 2em 4em;
		flex-direction: row;
		column-gap: 5em;
		font-size: 1.25em;
		min-height: 75vh;

		#dibujo_sara {
			width: 30vw;
		}

		#texto {
			max-width: 50vw;
		}
	}
}