.demo-grid {
	--body-text: #585858;
	--body-text-alt: #0ae0ce;
	--body-bg: #010101;
	--link-text: #c7c5c5;
	--link-text-hover: #fff;
	--content-font: "Cormorant Garamond", sans-serif;
}

.content {
	--pieces-height: 90vh;
	height: 100vh;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.page-nav {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	font-family: var(--content-font);
}

.page-nav__item {
	    margin: 0 109px;
	font-size: 5vh;
}

.page-nav__item--close {
	font-size: 1.85em;
	margin: 1em 0 0 0;
	color: var(--body-text-alt);
	position: relative;
}

.page-nav__item--close:hover,
.page-nav__item--close:focus {
	color: var(--body-text-alt);
	text-decoration: line-through;
}

.content__title {
	text-shadow: 3px 3px 5px rgba(25, 24, 24, 0.88);
    text-align: center;
    line-height: 1;
    bottom: -27%;
    font-size: 8vw;
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    color: #ffffffd6;
    position: relative;
}
.content__title span {
	font-size: 3vw;
}

.page-nav--open ~ .content__title {
	pointer-events: none;
}

.content .pieces {
	height: var(--pieces-height);
	width: calc(var(--pieces-height) * calc(888/1000));
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: calc(-1 * var(--pieces-height) * calc(888/1000) / 2);
	margin-top: calc(-1 * var(--pieces-height) / 2);
	pointer-events: none;
}
.ocultar{
	display:none;}

@media screen and (max-width: 40em) {
	.ocultar{
		display:inline-block;}
	.content {
		--pieces-height: 50vh;
		height: var(--pieces-height);
		margin-bottom: 0;
	}
	.content__title {
		font-size: 15vw;
	}
	.page-nav__item {
		margin: 0 10px;
		font-size: 2.7vh;
	}
}

.frame__title {
    font-size: 1.4em;
}