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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



body{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}




.container{
	width: 80%;
	height: 100vh;
}

img{
	width: 150px;
	display: block;
	margin: auto;
	margin-top: 15vh;
}

h1{margin-top: 2vh;
	font-family: 'Poppins', sans-serif;
	text-align: center;
	font-size: 50px;
	color: #71A82C;
	font-weight: 900;
	
}

p{
	color: #4A4A4A;
	font-family: 'Poppins', sans-serif;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	width: 50%;
	line-height: 1.2;
	display: block;
	margin: auto;
	margin-top: 2vh;
}

a{
	display:block;
	width: max-content;
	margin: auto;
	text-align: center;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	padding: 15px 30px;
	background: #71A82C;
	border: 0px;
	font-size: 14px;
	border-radius: 8px;
	color: white;
	box-shadow: 0px 0px 20px 1px rgba(113,168,44,0.58);
	margin-top: 4vh;
	transition:0.2s;
		
}

a:hover{
	transform: scale(1.05);
	transition: 0.2s;
	cursor: pointer;
}

a i{
	font-size: 12px;
	margin-top: -2px;
	padding-left: 5px;
	font-weight: 900;
}