body {
	margin: 0;
	background: #fa8caa;
	text-align: center;
	font-family: Arial, sans-serif;
	font-size: 11px;
	color: #fa8caa;
}

#loadingPage {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #d85a7a;
	z-index: 9999;
	transition: transform 0.1s ease-out;
}

#loadingPage img {
	max-width: 80%;
	max-height: 80%;
}

#svgWrapper {
	display: inline-block;
	cursor: pointer;
	width: 100vh;
	height: 100vh;
}

#title {
	display: none;
	position: relative;
	z-index: 100;
}

#titleText {
	width: 100%;
}

#title.animate {
	display: block;
}

#title img {
	display: block;
}

#initialScreen {
	position: relative;
	
}

#hearts {
	position: relative;
	margin: auto;
	width: 50%;
	z-index: 1000;
}

#contentPage {
	display: block;
	width: 100%;
	padding: 40px 0;
}

#contentPage img {
	width: 40%;
	/* max-width: 500px; */
	margin: 40px auto;
	display: block;
}

#contentPage img:nth-child(odd) {
	margin-left: 5%;
	margin-right: auto;
}

#contentPage img:nth-child(even) {
	margin-right: 5%;
	margin-left: auto;
}