/** Estilo para todos los elementos **/

/* Cargar la fuente rubik */
@font-face {
	font-family: Rubik;
	src: url("/public/fonts/Rubik-Regular.ttf");
}
/* ------- */

/* Agregar la fuente rubik a todos los elementos */
* { font-family: 'Rubik'; font-variant: none;}
/* ------- */

/* Estilo para el texto seleccionado */
*::selection {
	background-color: black;
	color: white;
}
/* ------- */

/** ------- **/

body {
	align-items: center;
	background-color: #f4f4f4;
	display: flex;
	height: 100vh;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.div-error {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 40px;
	text-align: center;
}

.icono-error {
	font-size: 100px;
	margin-bottom: 20px;
}

.icono-error.fa-hand { color: #ffa500; }
.icono-error.fa-ban { color: #ff0000; }
.icono-error.fa-exclamation-triangle { color: #ffa500; }

.encabezado-error {
	color: #333;
	font-size: 36px;
	margin-bottom: 20px;
}

.mensaje-error {
	color: #666;
	font-size: 18px;
	margin-bottom: 20px;
}