html, body {
    width: 100%;
    height: 100%;
    background-color: #0A799A;
}
main {
    width: 100%;
}
section {
    background-size: cover;
    background-position: center;
}
section .main {
    max-width: 1100px;    
    padding: 75px 10% 100px 10%;
    margin: auto;
    text-align: left;
}
section h1 {
    margin-bottom: 25px;
    padding-top: 40px;
	font-family: 'Roboto Slab', serif;
    text-shadow: 2px 2 px #000;
	font-size: 2.8em;
    font-weight: 300;
    color: #fff;
}
section h2 {
	font-size: 1.3em;
	font-weight: 200;
	color: #ddd;
}
section p {
	margin-bottom: 20px;
    color: #fff;
    font-size: 1.3em;
	line-height: 1.4em;
	font-weight: 400;
}
article .main {
    max-width: 1000px;
    padding: 40px 10% 25px 10%;
    margin: auto;
}
article img {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px 0;
}
article h1 {
    margin-bottom: 10px;
	font-family: 'Roboto Slab', serif;	
	font-size: 2.2em;
    color: #fff;
}
article h2 {
    margin-bottom: 15px;
	font-size: 1.8em;
	font-weight: 400;
	font-family: 'Roboto Slab', serif;	
	color: #fff;
}
article p {
	font-size: 1.1em;
	line-height: 1.4em;
	font-weight: 400;
	margin-bottom: 20px;
    color: #fff;
}
article p.column {
    width: 40%;
    margin-left: 5%;
    float: right;
}
article a:link{
    color: #fff;
    text-decoration: underline;
}
article a:hover{
    color: #fff;
    text-decoration: none;
}
article a:visited{
    color: #fff;
    text-decoration: underline;
}
@media screen and (max-width: 600px) {
    article p.column {
        width: 90%;
        margin: auto;
        float: none;
    }
}
#playlist {
    max-width: 1100px;    
    padding: 15px 2px;
    display: inline;
    text-align: center;
}
#playlist li{
    width: 340px;
    overflow: hidden;
    background-color: #355968;
    border-radius: 4px;
    padding: 15px;
    margin: 5px;
    display: inline-block;
    vertical-align: top;
}
#playlist li .img{
    width: 100%;
    height: 200px;
    background-color: #000;
    margin-bottom: 20px;
}
#playlist li h2 {
	font-family: 'Roboto Slab', serif;	
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
    font-size: 1.3em;
}
#playlist li p {
    color: #fff;
    text-align: left;
    font-size: 0.9em
}
blockquote {
	width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-style: italic;
	font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;	
    border-left: #4a4a4a 10px solid;
}
blockquote span {
	margin-top: 15px;
	font-family: 'Open Sans', serif;
	font-size: 16px;
    color: #ccc;
}

/*OTROS*/
.arrow {
    width: 50px;
    height: 50px;
    display: block;
    margin-top: 20px;
    border-radius: 50%;
    background-color: #0A799A;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .5;
    transition: all .5s ease;
}
.arrow.down {
    background-image: url(../svg/arrow_down.svg);
}
.arrow:hover {
    opacity: 1;
}
/*OTROS*/
