* {
	padding: 0;
	margin: 0;
	font-family: "Sour Gummy", sans-serif;
	font-style: normal;
	font-weight: 900;

	font-optical-sizing: auto;
	font-variation-settings: "wdth" 100;
}


.contentInner {
	background-color: rgba(255, 255, 255, .5);
	border-radius: 10px;
	backdrop-filter: blur(5px);
}

.bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background-image: url(../bg/main-bg.svg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}

.bg-fill {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	box-sizing: border-box;

	border-image-outset: 0 0 0 0;
	border-image-repeat: stretch stretch;
	border-image-slice: 27 27 580 27;
	border-image-source: url(../bg/main-bg.svg);
	border-image-width: 20000px 20px 20px 20px;
}

.content {
	position: absolute;
	top: 80px;
	right: 50px;
	bottom: 80px;
	left: 50px;
	z-index: 3;
	overflow: auto;
	color: #4B0E48;
	font-size: 20px;
	line-height: 35px;
	text-align: center;
}

.fa-heart {
	position: absolute;
	top: -10vh;
	z-index: 2;
	color: #FEFEFD;
	font-size: 25px;
	animation: heartMove linear 1;
}

.intro .bg {
	display: none;
}



@keyframes heartMove {
	0% {
		transform: translateY(-10vh) ;
	}
	100% {
		transform: translateY(110vh) ;
	}
}
