.a{
	text-decoration:none;
}
html, body{
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
	
	font-family: 'minusculas';
	
	height: 100%;
	width: 100%;
	
	background: rgba(240, 240, 240, 1);
}

#fondo_musica{
    float: left;
    width: 100%;
}
#contenido_musica{
	float: left;
	width: 50%;
	margin-left: 25%;
	margin-top: 250px;

	color: black;
	text-align: justify;
}
    .titulo_contenido{
        float: left;
        width: 100%;
        font-size: 2em;
        text-align: center;
    }
    
    .disco{
        float: left;
        width: 70%;
        margin-left: 15%;
        margin-top: 50px;
        margin-bottom: 50px;
    }
        .titulo_disco{
            float: left;
            width: 100%;
            margin-bottom: 30px;
            font-size: 1.6em;
            text-align: center;
        }
        .imagen_disco{
            float: left;
            width: 100%;
        }
            .imagen_disco img{
                width: 100%;
            }
        .boton_spotify{
			float: left;
			width: 40%;
			margin-left: 20%;
			margin-top: 30px;
			text-align: center;
			border: 1px solid black;
			color: black;
			background: transparent;
			padding: 8px 10%;
			font-size: 1.2em;
			
			-moz-transition:all .5s ease;
			-ms-transition:all .5s ease;
			-o-transition:all .5s ease;
			transition:all .5s ease;
		}
			.boton_spotify:hover{
				background: black;
				color: white;
				cursor: pointer;
			}
    .hr_central{
        float: left;
        width:70%;
        border-top: 1px solid grey;
        margin: 50px 15%;
    }
        
	
/* Media Queries */
@media screen and (min-width: 1500px) {
    #contenido_musica{
		width: 50%;
	    margin-left: 25%;
	}
}

@media screen and (max-width: 1000px) {
    #contenido_musica{
        width: 80%;
        margin-left: 10%;
        margin-top: 150px;
    }
}

@media screen and (max-width: 500px) {
    #contenido_musica{
        width: 94%;
        margin-left: 3%;
    }
    .boton_spotify{
		width: 80%;
		margin-left: 5%;
		padding: 8px 5%;
    }
}

