* {
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	flex-direction: column;
	position: relative;
	justify-content: flex-start;
	align-items: center;
	background-color: #78bbcb;
}

/* Loader */

.loader {
	display: flex;
	position: fixed;
	height: 100vh;
	width: 100vw;
	background-color: #78bbcb;
	z-index: 1000;
	justify-content: center;
	align-items: center;
	opacity: 100%;
	transition: opacity 0.2s ease-in;
	animation: duracion-loader;
}

.loader img {
	height: 250px;
	width: auto;
}

.loader2 {
	opacity: 0%;
}

/* Telon */

#telon {
	display: flex;
	flex-direction: row;
	z-index: 100;
	position: fixed;
	width: 100%;
	overflow: visible;
}

#telon-izq, #telon-der {
	width: 50%;
	height: 100%;
	position: fixed;
}

#telon-izq img, #telon-der img {
	width: 100%;
	height: 100%;
}

#telon-izq {
	animation-name: mover-a-izq;
	animation-delay: 3.5s;
	animation-duration: 3.5s;
	left: 0;
	animation-fill-mode: forwards;
}

#telon-der {
	animation-name: mover-a-der;
	animation-delay: 3.5s;
	animation-duration: 3.5s;
	animation-fill-mode: forwards;
	right: 0;
}

@keyframes mover-a-izq {
	0% {
		left: 0;
	}
	100% {
		left: -1000px;
	}
}

@keyframes mover-a-der {
	0% {
		right: 0px;
	}
	100% {
		right: -1000px;
	}
}

/* Titulo */

@font-face {
	font-family: 'Cooper Black';
	src: url(fuentes/COOPBL.TTF);
}

.titulo {
	font-family: 'Cooper Black';
	text-align: center;
	font-size: 67px;
	margin-top: 2.5%;
}

/* Objetos */

#tabla {
	display: block;
}

.reloj1 {
	margin-left: 105px;
}

#jesus {
	text-align: top;
	margin-left: 15px;
}

#tostadorachica1 {
	margin-left: 90px;
}

.gusano2 {
	margin-left: 30px;
}

#tostadorachica2 {
	margin-left: 35px;
}

.tostadoragrande {
	margin-left: 160px;
}

#boca2 {
	margin-left: 20px;
}

#campanagrande {
	margin-left: 22px;
}

#campanachica {
	margin-left: 200px;
}

.reloj2 {
	margin-left: 90px;
	margin-top: -50px;
}

#tostadora3 {
	margin-left: 20px;
}

#audio {
	margin-top: 20%;
}