* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body, html {
	background: linear-gradient(to bottom right, #DC362D 0%, #8F0700 100%);
	color: white;
}

main {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
}

.message {
	font-size: 15vw;
	font-weight: 900;
	text-align: center;
	text-shadow: 0px 0px 24px rgba(0, 0, 0, 0.4);
}


/* .bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
} */

.tiny-heart {
	position: absolute;
	opacity: 0;
	background-color: #fff;
	box-shadow: 0px 0px 50px 4px transparentize(#fff, .3);
	animation: animated-heart infinite ease-in;
	&:before, &:after {
		content: '';
		position: absolute;
		border-radius: 50%;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
	}
	&:before {
		transform: translateX(-50%);
	}
	&:after {
		transform: translateY(-50%)
	}
}

@keyframes animated-heart {
	0% {
		opacity: 0;
		transform: translate(0, 0) rotate(45deg)
	}
	50% {
		opacity: 1;
		transform: translate(0, -40%) rotate(45deg);
	}
	100% {
		opacity: 0;
		transform: translate(0, -1000%) rotate(45deg);
	}
}