	/*
	This stylesheet is for Rosamystica website.
	*/

	.item-1 {
		grid-area: whiteRose;	
	}

	.item-2 {
		grid-area: redRose;	
	}

	.item-3 {
		grid-area: yellowRose;	
	}

	.item-4 {
		grid-area: centerImages;	
	}

	.item-5 {
		grid-area: history;	
	}

	.item-6 {
		grid-area: prayers;	
	}

	.item-7 {
		grid-area: testimonials;	
	}

	.item-8 {
		grid-area: welcome;	

	}
	.item-9 {
		grid-area: TBD;	

	}

	.container {
		display: grid;
		grid-template-columns: 1fr 130px 900px 130px 1fr;
		grid-template-rows: [rFirst] auto [rSecond] auto [rThird] auto [rFourth] auto [rFifth] auto [rSixth] auto [rend];
		grid-template-areas: 
			". whiteRose centerImages . ."
			". redRose centerImages . ."
			". yellowRose centerImages testimonials ."
			". . centerImages prayers ."
			". . centerImages history ."
			". . welcome . .";

		gap: 2px 5px;
		justify-items: start;
	}


	.welcome {
		color:  whitesmoke;
		font-family: Georgia, serif;
		font-size: 50px;
	}
