/*Import*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/*Reset*/
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;
}

html, body {
	line-height: 1; height: 100%;
	  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
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;
}
div{box-sizing: border-box;}

/*Style*/
.flexbox{
	  display: -webkit-box;
	  display: -moz-box;
	  display: -webkit-flex;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-flex: 0;
	  -ms-flex: 0 1 auto;
	  flex: 0 1 auto;
	  -webkit-box-orient: horizontal;
	  -webkit-box-direction: normal;
	  -ms-flex-direction: row;
	  flex-direction: row;
	  -ms-flex-wrap: wrap;
	  flex-wrap: wrap;
}

.pageWrapper{width: 100%; min-height: 100%; position: relative; align-items: center; justify-content: center; background-image: url('images/page-bg.jpg'); background-repeat: no-repeat; background-position: center center; background-size: cover;}
.pageWrapper::before{content:''; display: block; position: absolute; width: 100%; height: 100%; left: 0; top: 0; opacity: 0.75; background-color: #dedeb7;}
.pageWrapper::after{content:''; display: block; position: absolute; width: 100%; height: 12%; left: 0; bottom: 0; opacity: 1; background-color: transparent; background-image: url('images/bottom.svg'); background-repeat: no-repeat; background-size: content; background-position: bottom center;}
.infoBlock{display: block; width: 90%; max-width: 600px; position: relative; z-index: 5; margin: 2rem auto; padding: 2rem; text-align: center;
}

h1{ font-family: "Nunito", sans-serif;font-size: 2.2rem; font-weight: 800; color: #434335;}

.logo{display: block; margin: 0 auto 5rem; width: 100%; max-width: 280px}