@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
	margin: 0px;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #333;
	background-color: #ddd;
}
ul, li, ol, dl, dt, dd, form, p, img, a, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	list-style: none;
	outline: none;
	border: none;
}
.clear {
	clear: both;
}
a:hover, a:focus{
	text-decoration: none;
}


.wrapper{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
}
.wrapper .center{
	background-color: white;
	padding: 0 20px 30px;
	border-radius: 10px;
	box-shadow: 0 5px 20px 0 rgba(0 0, 0, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 800px;
}
.logo{
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo img{
	display: block;
	width: 200px;
}
.text{
	padding-bottom: 30px;
}
.text h1{
	color: #21418c;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	padding-bottom: 20px;
}
.text h1 span{
	font-weight: 600;
	font-size: 24px;
	color: #a90838;
	display: block;
}
.text p{
	text-align: center;
	font-size: 15px;
}
.btns{
	display: flex;
	justify-content: center;
}
.btns a{
	display: flex;
	padding: 10px 15px;
	margin: 0 10px;
	border: 2px solid #e29747;
	border-radius: 3px;
	color: #21418c;
	font-size: 15px;
	font-weight: 500;
	transition: background-color .5s, color .5s;
}
.btns a:nth-child(2){
	border-color: #dc1e3e;
	color: #dc1e3e;
}

@media (min-width: 550px){
	.wrapper .center{
		padding: 20px 40px 40px;
	}
}
@media (min-width: 1200px){
	.wrapper .center{
		padding: 40px 50px 60px;
	}
	.text h1{
		font-size: 24px;
	}
	.text h1 span{
		font-size: 32px;
	}
	.text p{
		padding-left: 50px;
		padding-right: 50px;
	}
	.btns{
		padding-top: 10px;
	}
	.btns a{
		font-size: 16px;
		padding: 15px 35px;
		font-weight: 600;
	}
	.btns a:hover{
		background-color: #21418c;
		color: #fff;
	}
	.btns a:nth-child(2):hover{
		background-color: #dc1e3e;
	}
}