#espacio {
	width: 100%;
	height:100vh;
}

#gl {
	width: 100vw;
	height:100vh;
	top: 0;
	left:0;
	position:fixed;
	display: block;
	z-index: -1;
}
.message {
	display: none;
}

canvas {
	display: block;
}

@media screen and (min-width: 53em) {
	.frame {
		position: fixed;
		text-align: left;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100vh;
		padding: 2rem 3rem;
		pointer-events: none;
		grid-template-columns: 75% 25%;
		grid-template-rows: auto auto auto;
		grid-template-areas: 'title links'
							'content content'
							'github demos';
	}
}

