html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, a, abbr, acronym, address, del, em, img, ins, strong, sub, sup, b, u, i, center, dl, dt, dd, ol, ul, li, form, label, legend, table, caption, article, aside, canvas, embed, figure, footer, header, menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}
article, footer, header, menu, nav, section, h1, h2, h3, h4, h5, h6, img, li, ol, ul, p, input, textarea, select {
	display: block;
}
ol, ul {
	list-style: none;
}
img {
	border: 0;
	height: 100%;
	width: auto;
}
a, strong {
	text-decoration: none;
	font-weight: 600;
	color: inherit;
}
html, body {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
body {
	font-family: 'Montserrat',sans-serif;
	font-weight: 400;
	font-size: 1em;
	color: white;
	background-image: linear-gradient(0deg, #f2f2ce 0%, #b3b398 100%);
	background-size: cover;
	animation: fadein 3s;
}
h1 {
	position: fixed;
	width: 100%;
	top: 25px;
	text-align: center;
	font-family: 'Montserrat',sans-serif;
	font-weight: 200;
	font-size: 1.5em;
	letter-spacing: 0.3em;
}
.fondo {
	position: fixed;
	z-index: 700;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.fondo_izq, .fondo_der {
	position: fixed;
	top: 0px;
	width: 50%;
	height: 100vh;
	transition: left 1s ease;
}
.fondo_izq {
    left: 0;
    text-align: right;
}

.fondo_izq img {
    float: right;
    height: 100vh;
    width: auto;
}

.fondo_der {
    left: 50%;
}

.fondo_der img {
    float: left;
    height: 100vh;
    width: auto;
}
.btn-flotante {
	position: fixed;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	padding: 15px 30px;
	background: rgba(179, 179, 152, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 50px;
	color: white;
	letter-spacing: 0.3em;
	cursor: pointer;
	z-index: 800;
}

.hemisferio {
	position: fixed;
	z-index: 600;
	height: 85%;
	width: 80%;
	top: 15%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 1s ease;
	overflow-x: auto;
}
.hemisferio p {
	font-size: 1.2em;
	color: #333;
	margin: 10px;
}
.hemisferio li {
	display: inline-block;
	height: 150px;
	margin: 10px;
	text-align: center;
}
.hemisferio li img {
	border: 5px solid white;
	margin: 5px auto;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.hemisferio li img:hover {
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
}
.hemisferio li p {
	font-size: 0.6em;
	font-weight: 600;
	color: #999;
}
.hemisferio.visible {
	opacity: 1;
	pointer-events: auto;
}
.izquierdo {
	left: 0px;
	text-align: left;
	margin-left: 2%;
}
.derecho {
	right: 0px;
	text-align: right;
	margin-right: 2%;
}
@keyframes fadein {
    0% { opacity:0; }
    50%{ opacity:0.5; }
    100% { opacity:1; }
}
@media screen and (max-width: 1024px) {
	h1 { font-size: 0.8em; letter-spacing: 0.2em; }
	.fondo { z-index: 500; }
	.hemisferio { height: 88%; width: 93%; top: 10%; background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(8px); 	border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 10px; padding: 1%; }
	.hemisferio p { font-size: 1em; text-align: center; }
	.hemisferio ul { text-align: center; }
	.hemisferio li { height: 80px; margin: 5px 1px; }
	.hemisferio li img { border: 2px solid white; }
	.hemisferio li p { max-width: 80px; margin: 5px auto; }
}