* {
  box-sizing: border-box;
}
body {
  background-color:#666;
  background-image: url('../images/infinityBackground.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; 
}

.header {
  display: flex;
  flex-flow: row wrap;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 5px;
}

html {
  font-family: 'Oxanium', cursive;
  font-size: 2px;
  color:#aaa;
}

.title {
  font-size: 22px;
}

.legal {
  font-size: 12px;
}

.menu ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 2px;
  padding: 2px;
}

.menu li {
  display: inline-block;
  padding: 2px;
  margin-bottom: 2px;
  color: #ffffff;
}

.menu img {
  height: 50px;
  width: 50px;
  left: auto;
  right: auto;
  display: block;
}

.menu img:hover {
  border: 5px solid gray;
  border-radius: 100%;
}

.footer {
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

/* For mobile: */
.col-header {width: 100%;}
.col-title {width: 70%;}
.col-legal {width: 30%;}
.col-menu {width: 100%;}
.col-faction {width: 100%;}
.col-unit {width: 100%;}
.col-wrapper {width: 100%;}

@media only screen and (orientation: landscape) {
  /* For desktop: */
.col-header {width: 100%;}
.col-title {width: 100% - 260px;}
.col-legal {width: 260px;}
.col-menu {width: 20%;}
.col-faction {width: 60px;}
.col-unit {width: 60px;}
.col-wrapper {width: 80%;}
}