/* Eric Meyer's CSS 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;
}
/* 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;
}
/* End of Eric Meyer's CSS Reset */

html {
	height: 100%;
	background: url(images/bg.jpg); 
	background-repeat: no-repeat;
	background-size: auto;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body {
	font-family: Helvetica, Arial, Geneva, sans-serif;
	height: 100%;
}
a {
  color: #fff;
  text-decoration: none; /* no underline */
}
img {
    max-width:100%;
    max-height:100%;
    display:block;
	float: left;
	padding: 5px;
}
video {
    max-width:100%;
    max-height:100%;
    display:block;
	float: left;
	padding: 5px;
}
p {
	padding: 1px;
	float: left;
	vertical-align: middle
}
h3  {
  text-align: center;
}

video{
  outline:none;
}


/* Header
-----------------------------------------------------------------------------*/
.vrab {
	    width: 100%;
        height: 20%;
		color: #fff;
		font-size: 5.2vw;
		font-weight: bold;
		display: flex;
		justify-content: center; /* align horizontal */
		align-items: center; /* align vertical */
		opacity: 0.5;
}

.vgerm {
	    width: 100%;
        height: 12%;
        background: #ccc9c5;
		color: #7f00ff;
		font-size: 4.9vw;
		font-weight: bold;
		display: flex;
		justify-content: center; /* align horizontal */
		align-items: center; /* align vertical */
		opacity: 0.5;
}


/* Middle
-----------------------------------------------------------------------------*/
.parent {
		height: 35%;
		padding: 35px;
		display: flex;
		color: #000;
		font-size: 1.7vw;
		font-weight: bold;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		}

		.div1 { grid-area: 1 / 1 / 2 / 2; padding: 5px; vertical-align: middle; display: flex; flex-direction: column; justify-content: center; }
		.div2 { grid-area: 1 / 2 / 2 / 3; padding: 5px; vertical-align: middle; display: flex; flex-direction: column; justify-content: center; }
		.div3 { grid-area: 1 / 3 / 2 / 4; padding: 5px; vertical-align: middle; display: flex; flex-direction: column; justify-content: center; }
/* Footer
-----------------------------------------------------------------------------*/
.ftel {
		width: 100%;
        height: 19%;
        background: #ffea00;
		color: #7f6600;
		font-size: 5.3vw;
		font-weight: bold;
		display: flex;
		justify-content: center; /* align horizontal */
		align-items: center; /* align vertical */
		opacity: 0.5;
}