@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700&display=swap');

:root{
	font-family: 'denim_wd-trialbold';
}
*{
	font-family: 'denim_wd-trialbold';
}

#aplicacion{
	/* position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0; */
	width: 100%;
	height: 100vh;

	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-template-areas: "area"
}


#aplicacion .encabezado{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	padding: 0.5rem 1rem;
	z-index: 2;

}

#aplicacion .logo{
}


#aplicacion .mensaje{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.5rem;
	color: white;
	padding: 1rem;
	background-color: #00000066;
	z-index: 10;
}


#aplicacion .pagina{
	grid-area: area;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 5;
	box-sizing: border-box;
}

#aplicacion .fondo{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;

	z-index: -1;
}


#aplicacion .marca{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 150px;
}
