*{
	padding: 0;
	margin: 0;
	outline:0;
}
.container{
	height: 100vh;
	width: 100vw;
	text-align:center;
	color:#333;
	background: pink;

}
.love,.yes,.no{padding-top: 15%;}
.pharse{padding-top: 20%;}
.love span{color:red;}
h2{font-size: 82px;margin-bottom: 30px;}
h3{font-size: 42px;margin-bottom: 15px;}
p{font-size: 32px;}
h4{font-size: 62px;margin-bottom: 15px;}
a{font-size: 28px;text-decoration: none;padding: 5px 20px;
	margin-top: 10px;border:3px solid #ddd; border-radius: 110px;}
#no{color:red; background: #eee;margin-right: 110px;}
#yes{color:green;background: #eee;}
#pharse{color:blue;}

.yes img{
	height: 30px;
	width: 30px;
	animation: image 4s linear infinite;
}
@keyframes image{
	0%{transform: scale(.5);}
	50%{transform: scale(1.5);}
	100%{transform: scale(.5);}
}