.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_productos{
    float: left;
    width: 100%;
}
#contenido_productos {
	float: left;
	width: 80%;
	margin-left: 10%;
	margin-top: 250px;
	margin-bottom: 100px;

	color: black;
	text-align: justify;
}
    .titulo_contenido{
        float: left;
        width: 100%;
        font-size: 2em;
        text-align: center;
    }
    .subtitulo_contenido{
        float: left;
        width: 100%;
        margin: 20px 0;
        font-size: 1.4em;
        text-align: center;
    }
    .seccion_productos{
        float: left;
        width: 100%;
        margin: 30px 0;
    }
        .titulo_seccion{
            float: left;
            width: 100%;
            font-size: 1.6em;
            font-weight: bolder;
            text-align: left;
        }
        .producto{
            float: left;
            width: 21%;
            padding: 2%;
        }
    

    .img_producto{
        float: left;
        width: 100%;
    }
        .img_producto img{
            width: 100%;
            -webkit-border-radius: 8px; 
        	-moz-border-radius: 8px; 
        	border-radius: 8px;
        }
    .nombre_producto{
        float: left;
        width: 100%;
        font-size: 1.1em;
        text-align: center;
        padding: 10px;
        height: 40px;
    }

    
    
	
/* Media Queries */
@media screen and (min-width: 1500px) {
	#contenido_productos{
		width: 80%;
		margin-left: 10%;
	}
}

@media screen and (max-width: 1000px) {
    #contenido_productos{
        width: 80%;
        margin-left: 10%;
        margin-top: 150px;
    }
    .producto{
        width: 30.3%;
        padding: 1.5%;
    }
}

@media screen and (max-width: 800px) {
    #contenido_productos{
        width: 94%;
        margin-left: 3%;
    }
    .nombre_producto{
        font-size: 0.9em;
    }
}

@media screen and (max-width: 500px) {
   .producto{
        width: 98%;
        margin-left: 1%;
        margin-top: 20px;
        padding: 0;
    }
    .nombre_producto{
        font-size: 1.2em;
    }
}

