@import url(//fonts.googleapis.com/css?family=Open+Sans:400,700,600);

*{
  box-sizing:border-box;
}

html,body{
  margin: 0;
  padding: 0;
  background-color: #F7F8F9;
  height: 100vh;
  /*font-family: 'Open Sans';*/
}

html, body, main {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

button{
  border-radius: 0;
  width: 100%;
  height: 50%;
}

button.a,
button.b {
  border-radius: 0;
}

button i{
  float: right;
  padding-right: 30px;
  margin-top: 3px;
}

button.a{
  background-color: #1481BA;
}

button.b{
  background-color: #F56476;
}

#tip{
  text-align: left;
  color: #c0c9ce;
  font-size: 14px;
}

#content-container {
  position: relative; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#content-container-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

#content-container-center h3{
  color: #254356;
}

#credits {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  text-align: center;
}

#choice{
  transition: all 300ms linear;
  line-height: 1.3em;
  display: inline;
  vertical-align: middle;
  font-size: 3em;
}
#choice a{
  text-decoration:none;
}
#choice a:hover, #choice a:focus{
  outline:0;
  text-decoration:underline;
}

#choice button{
  display: block;
  height: 110px;
  width: 450px;
  border: none;
  color: white;
  text-transform: uppercase;
  font-size:18px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

button img {
  width: 100px;
  height: 100px;
}

#choice button.a:hover{
  background-color: #106794;
}

#choice button.b:hover{
  background-color: #C4505E;
}

#choice button.a:focus{
  background-color: #106794;
}

#choice button.b:focus{
  background-color: #C4505E;
}

#background-stats{
  z-index:1;
  height:100%;
  width:100%;
  position:absolute;
}
#background-stats div{
  transition: width 400ms ease-in-out;
  display:inline-block;
  margin-bottom:-4px;
  width:50%;
  height:100%;
}

.opacity-unselected {
  opacity: 0.3;
}

#version{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: black;
  position: fixed;
  bottom: 10px;
  left: 10px;
}

#resultLink {
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

#resultLink a {
  font-size: 15px;
  padding: 10px 20px;
  text-decoration: none;
  color: #1481BA;
  border: 1px solid #1481BA;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#hostname{
  margin-top: 10px;
  color: #8f9ea8;
  font-size: 16px;
}

#backend{
  margin-top: 50px;
}