:root {
  --azul-oscuro: #01214a;
  --azul-profundo: #011435;
  --azul-medio: #024379;
  --celeste: #41b7eb;
  --blanco: #ffffff;
  --negro: #000000;
  --gris: #eeeeee;
  --grismedio: #cccccc;
  --primario: var(--azul-medio);
  --secundario: var(--celeste);
	--fuente: 'Open Sauce', sans-serif !important;
}


html {
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-snap-type: y mandatory;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body, table, td, textarea, input, select {
	font-size: 1.5rem; /* 1rem = 10px */
	font-family: var(--fuente);
	
}
p {
	font-size: 2rem;
}

a:hover{
	text-decoration: none;
}
.texto_subrayado {
	text-decoration: underline;
}
.texto_resaltado {
	font-weight: 700;
}
.align_right {
	text-align: right;
}
.align_center {
	text-align: center;
}
.align_left {
	text-align: left;
}
.align_justify {
	text-align: justify;
}
.float_left {
	float: left;
}
.float_right {
	float: right;
}
span.align_justify, span.align_right, span.align_center {
	display: block;
}
.clear_both {
	clear: both;
}
form {
	padding: 0rem;
	margin: 0rem;
}
p {
	padding: 0rem;
	margin: 0rem;
}
.display_block {
	display: block;
}
.margen_none {
	margin: 0rem;
}
