/*Import*/
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&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: "Google Sans", sans-serif;
}
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;
}

.infoBlock{display: block; width: 90%; max-width: 600px; margin: 2rem auto; padding: 2rem; background: rgba(255,255,255,0.8); border-radius: 5px; text-align: center;
box-shadow: 0px 10px 40px -1px rgba(0,0,0,0.28);
-webkit-box-shadow: 0px 10px 40px -1px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 10px 40px -1px rgba(0,0,0,0.28);
}

h1{ font-family: "Google Sans", sans-serif; font-size: 2.6rem; color: #bc9347; color: black}