html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	background: #ffffff;
	color: #000000;
	font-size: 14px;
	line-height: 1.2;
	font-family: "Merriweather Sans", sans-serif;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	min-height: 100%;
	min-width: 320px;
}
a{
	outline: none;
	text-decoration: underline;
}
a:hover{
	text-decoration: none;
}

img{
	display: block;
	max-width: 100%;
}

ul , ol{
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
li{
	list-style: none;
}
ol{
	padding: 0 0 0 20px;
}
ol li{
	list-style: decimal;
}
/* buttons */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  margin: 0; /* 2 */
}
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
	box-shadow: none;
}
button:hover , button:focus , button:active{
	outline: none;
	box-shadow: none;
	text-decoration: none;
}
/* inputs */
input{
	outline: none;
	border: none;
}

/* End Total css ====*/

/* -------------- page index -------------- */
.wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	padding:0 15px;
}
.block{
	width: 700px;
	border-radius: 30px;
	background: #EAF795;
	padding: 57px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}
.logo{
	font-family: "Khand", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.64px;
	text-transform: uppercase;
	margin: 0 0 29px 0;
}
.logo img{
	margin: 0 auto 8px;
}
p{
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.28px;
	max-width: 244px;
	margin: 0 auto 0;
}
.block__bottom{
	position: relative;
	padding: 27px 0 0 0;
	margin: 26px 0 0 0;
}
.block__bottom:before{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 100px;
	height: 1px;
	background: #000;
}
.block__bottom a{
	display: block;
	color: #000;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.28px;
	text-decoration: none;
}
.block__bottom a:hover{
	text-decoration: underline;
}
@media (max-width: 450px) {

}