
body {
	background: black;
	color: #fff;
}

#rrss{
	padding-top: 10px;
}

#yt{
	padding-top: 10px;
}

#rr{
	padding-top: 10px;
}

@media (max-width: 768px) {
	.hero h2 {
		font-size: 2em;
	}

	.hero p {
		font-size: 1em;
	}

	.hero .overlay {
		padding: 20px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.hero h2 {
		font-size: 2.5em;
	}

	.hero p {
		font-size: 1.1em;
	}

	.hero .overlay {
		padding: 30px;
	}
}




.hero {
	height: 100vh; /* Toma toda la altura de la ventana */
	background: url('http://www.lousyfingers.cl/img/spotify02.jpg') no-repeat center center/cover;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero .overlay {
	background: rgba(0, 0, 0, 0.6); /* oscurece un poco la imagen */
	padding: 40px;
	border-radius: 10px;
}

.hero h2 {
	font-size: 3em;
	margin: 0;
}

.hero p {
	font-size: 1.2em;
	margin-top: 10px;
}




.slideanim {visibility:hidden;}
.slides {
    /* The name of the animation */
    animation-name: slides;
    -webkit-animation-name: slides; 
    /* The duration of the animation */
    animation-duration: 1s; 
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible; 
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slides {
    0% {
        opacity: 0;
        transform: translateY(70%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0%);
    } 
}
@-webkit-keyframes slides {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    } 
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}
