body{
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	background-color: rgb(32,50,50)
}
.img{
	display:flex;
}
.img img{
	width: 100%
}
.btn{
	margin: 3%;
}
.btn a{
	background-color: rgb(214, 18, 18);
	text-decoration: none;
	width: 100%;
	display: block;
	line-height: 65px;
	border-radius: 10px;
	text-align: center;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	animation:fadeInOut 1s infinite;
}
.remark{
	margin: 3% 8% 15%;
	color: #fff;
	line-height: 35px;
	font-size: 20px;
	text-align: center;
}

.btns{
	position: fixed;
	width: 100%;
	max-width: 750px;
	margin:0 auto 10px;
	bottom: 0;
}
.btns a{
	background-color: rgb(214, 18, 18);
	text-decoration: none;
	width: 100%;
	display: block;
	line-height: 65px;
	border-radius: 10px;
	text-align: center;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	animation:fadeInOut 1s infinite;
}




@keyframes fadeInOut {
  0% { transform: scale(0.9)}
  50% { transform: scale(1) }
  100% { transform: scale(0.9)}
}