@charset "utf-8";
/* CSS Document */

	.astoundBillboard{
		display: flex;
		flex-direction: column;
		background-color:#fff;
		color:#000;
		align-items: center;
	}
	.astoundBillboardContainer{
		width:70%;
	}
	.astoundBillboardContainer h1{
	transform:scale(1.0);
	opacity:0.0;
		transition: 1.0s all;
	}


.astoundBillboard h1{
	text-align: center;
	font-family: var(--astound-h2-font-family);
	font-weight: var(--astound-h2-font-weight);
	font-size: var(--astound-h2-font-size);
	line-height: var(--astound-h2-line-height);
	text-transform: var(--astound-h2-text-transform);

	
}

.astoundBillboardContainer.active h1{
	transform:scale(0.8);
	opacity:1.0;
}