@font-face {
	font-family: 'lovelyn'; /* El nombre que le darás a tu fuente */
	src: url('../fonts/lovelyn_demo.otf') format('otf'); /* La ruta al archivo de la fuente */
	font-weight: normal; /* Opcional: define el grosor normal de la fuente */
	font-style: normal;  /* Opcional: define el estilo normal de la fuente (normal, italic, etc.) */
  }

html {
	font-family: 'lovelyn';
}

body {
	text-align: center;
	background-color: lightgray;
}

.menu {
	background-color: black;
	color: white;
	width: 100%;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	padding: 10px;
	font-size: 40px;
}

#titulo {
	margin-left: auto;
	margin-right: auto;
}

.opciones {
	color: white;
	background-color: black;
	text-decoration: none;
	padding: 15px;
}
.opciones:hover {
	color: black;
	background-color: lightgray;
	text-decoration: none;
}

#tabla {
	margin-left: auto;
	margin-right: auto;
	width: 75%;
}

.datos_tabla {
	font-weight: normal;
}

table, th, tr {
	border: 1px solid black;
}

.codigo {
}

.comentarios {
	text-align: left;
}
