@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	width: 100%;
	background-color: #000000;
}

body::-webkit-scrollbar {
	width: 10px;
	background: #000000;
	border-left: 1px  solid #27D4E2;
	border-left-style: dashed;
	
}

body::-webkit-scrollbar-thumb{
	border: 1px solid #27D4E2;
	background: #27D4E2;
	border-radius: 10px;
}		

/* CONTENIDO DE PAGINA */

h1{
	color: white;
	font-family: Palatino, "Palatino Linotype",  "Century Schoolbook L", "Times New Roman", "serif";
	font-size: 18pt;
	font-weight:normal;
	text-align: center;
	width: 95%;
	margin: auto;
}

a{
	color: #27D4E2;
	font-family: Palatino, "Palatino Linotype",  "Century Schoolbook L", "Times New Roman", "serif";
	font-size: 17pt;
	font-weight:normal;
	text-align: left;
	
}

.contenedor_articulos{
	width: 95%;
	margin: auto;
}

.vacio{
	height: 150px;
}

.ornamento{
	max-width: 768px;
	height: auto;
	margin: auto;
	background-image: url("../imagenes/FONDO_ORNAMENTO2.png"); 
	background-repeat: repeat-y;
}


/* DISEÑO PARA TABLET */

@media (min-width:481px) and (max-width:768px){
	
	
}



/* DISEÑO PARA MOVIL */

@media (min-width:0px) and (max-width:480px){
	
	a{
		font-size: 14pt;
	}
	
}	