/* HoagPropertyGroup */

.banner-container {
    margin-bottom: 10px;
    margin-top: 20px;
}
.banner-text {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    color: black;
}

/* Custom, iPhone Retina and Galaxy S9 */
@media only screen and (min-width : 320px) {
	.banner-text {
		font-size: 20px;
	}
}

/* Custom, larger than Galaxy portrait */
@media only screen and (min-width : 370px) {
	.banner-text {
		font-size: 20px;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
	.banner-text {
		font-size: 30px;
	}
}

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

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

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

/* TV Screen size, Signs, etc. */
@media only screen and (min-width : 1800px) {
  /* Uses 992px section setting from above. */
}