/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
	.brandname {
		font-size: 1.0rem;
	}
}
	
/* Phones */ 
@media only screen and (min-width : 480px) {
	.brandname {
		font-size: 1.0rem;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.brandname {
		font-size: 2.0rem;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.brandname {
		font-size: 2.0rem;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	.brandname {
		font-size: 2.0rem;
	}
}

/* TV Screen size, Signs, etc. */
@media only screen and (min-width : 1800px) {
	.brandname {
		font-size: 2.0rem;
	}
}