body{
	min-height: 100vh;
	background: rgb(255,188,250);
	background-image: linear-gradient(180deg, rgba(255,188,250,1) 0%, rgba(255,41,239,1) 52%, rgba(159,2,151,1) 100%);
	background-repeat: no-repeat;
	text-align: center;
}

h1 {
	color: white;
	font-family: 'Fredoka One', cursive;
	font-size: 100px;
}

p {
	font-family: 'Josefin Slab', serif;
	font-weight: bold;
	font-size: 30px;
}

h2 {
	font-family: 'Oldenburg', cursive;
	font-size: 100px;
	color: purple;
}

.heart {
  fill: red;
  position: relative;
  top: 5px;
  width: 50px;
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

div {
	display: flex;
	flex-direction: row;
	justify-content: center;
}