*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}


  

body{
	background: #fff;
	color: pink;
}

.center{
	display: flex;
	justify-content: center;
	align-items: center;
}

.main{
	width: 100%;
	height: 100vh;
}

.container{
	
	flex-direction: column;
}

.container h2{
	
	margin-top: 60px;
}

button{
	width: 150px;
	height: 40px;
	font-size: 1rem;
	color: #fff;
	background: #000;
	outline: none;
	border: none;
	cursor: pointer;
	background: #51A0BD;
}

.kiss-photoGirl {
	position: absolute;
	width: 120px;
	height: auto;
	opacity: 0;
	transform: scale(0.5);
	pointer-events: none;
	z-index: 9999;
	transition: all 0.5s ease-in;
  }

  .kiss-photoBoy {
	position: absolute;
	width: 100px;
	height: auto;
	opacity: 0;
	transform: scale(0.5);
	pointer-events: none;
	z-index: 9999;
	transition: all 0.5s ease-in;
  }
  
  .girl-higher {
	margin-top: -20px;
  }

  .kiss-animate {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  .kiss-fade {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.2) rotate(10deg);
	transition: all 0.6s ease-out;
  }

  
  .heart {
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: pink;
	transform: rotate(45deg);
	animation: floatUp 1.2s ease-out forwards;
	z-index: 9999;
	pointer-events: none;
  }
  
  .heart::before,
  .heart::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: pink;
	border-radius: 50%;
  }
  
  .heart::before {
	top: -10px;
	left: 0;
  }
  
  .heart::after {
	left: -10px;
	top: 0;
  }
  
  @keyframes floatUp {
	0% {
	  opacity: 1;
	  transform: scale(1) rotate(45deg) translateY(0);
	}
	100% {
	  opacity: 0;
	  transform: scale(1.5) rotate(45deg) translateY(-80px);
	}
  }
  
  
  