*{
	box-sizing:border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; 
}
html{
  height:100%;
}
body{
  font-size:16px;
  margin:0px;
  height:100%;
  font-family: 'Open Sans', sans-serif;
  border:1px solid #ccc;
}
/****** HEADLINES ******/
h2{
  font-size:1.5rem;
  text-transform: uppercase;
  font-style: bold;
  margin:0.5rem 0;
  padding:0 1rem;
}

h3{
  font-size:1.4rem;
  text-transform: uppercase;
  font-style: bold;
}

/****** COLORS ******/
.color1{color:#272cfd;}
.color2{color:#ffe400;}
.color3{color:#707070;}
.color4{color:#fff;}
.color5{color:#ededed;}
.bgcolor1{background-color:#222;}
.bgcolor2{background-color:#333;}
.bgcolor3{background-color:#707070;}
.bgcolor4{background-color:#fff;}
.bgcolor5{background-color:#ededed;}

/****** STRUCTURE ******/
.container{
  width:100%;
  height:100%;
  min-height:100%;
  display:flex;
  flex-direction:column;
	background-image: url('');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.logoarea{
  width:100%;
  height:10%;
  padding:1%;
  min-height:60px;
}
.content{
	width:100%;
	padding:1%;
	text-align:center;
	position:relative;
	height:90%;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}

/****** LOGO ******/
.logo{
  width:100%;
  height:100%;
  background-color:#ededed;
  border-radius:5px;
  text-align:center;
  max-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
}

/****** BUTTON ******/
.btn{
  border: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  border-radius: 5px;
  font-weight: 400;
  display:inline-block;
  vertical-align:middle;
  text-decoration:none;
}
.btn:hover{
  text-decoration:none;
  outline:0;
}
.btn-default{
    color:#ffe400;
    border: 2px solid #ffe400;
    letter-spacing:0.1em;
    width:80%;
    height: auto;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 6%;
    border-radius: 17px;
    position: absolute;
    bottom: 5%;
    left: 11%;
}

.btn-circle{
   padding:0.5rem;
   width:2rem;
   height:2rem;
   font-weight:200;
   text-align:center;
	 border-radius:10px;
	 vertical-align:middle;
}
.btn-circle i{
  margin:0px;
  padding:0px;
}
.btn-circle:hover{
  color:#fff;
  background-color:#aaa;
}
