@charset "UTF-8";
/* AIR Advertisement CSS */

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh; /* Avoid the IE 10-11 `min-height` bug. */
	background-color: #fff;
	background-image: url(/../img/bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin: 0;
/*	height: 100%; */
	width:100%;
}

.logo {
	background-image: url(/../img/airadv-logo-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
   	width: 300px;
   	height: 212px;
   	position: absolute;
   	left: 50%;
   	top: 50%; 
   	margin-left: -150px;
   	margin-top: -106px;
	z-index: 10;
}

.content {
  font-family: 'Abel', sans-serif;
  font-weight: bold;
  font-size: small;
  width: 100%;
  background-color: #000;
  position: absolute;
  flex: 1 0 auto; /* Prevent items to shrink smaller than their content's default minimum size. */
  padding: 15px 0px;
  color: #fff;
  text-align: center;
  z-index: 5;
}

.footer {
  font-family: 'Abel', sans-serif;
  width: 320px;
  position: absolute;
  left: 50%;
  margin-left: -160px;
  bottom: 0px;
  flex-shrink: 0; /* Prevent items to shrink smaller than their content's default minimum size. */
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  z-index: 5;
}

a, a:visited, a:active {
	color: #ffffff;
	text-decoration: underline;
}

a:hover {
	color: #62C4FF;
	text-decoration: none;
}