html, body {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-attachment: fixed;
  background-size: cover;
  color:white;
  font-size: 16px;
  font-family: "myriad-pro",sans-serif;
}

#bg-video {
  filter:blur(3px);
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
}

#bg-pattern {
  background-color: #111113;
  position: fixed;
  opacity: 0.6;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#content {
  position: relative;
  background: rgba(0,0,0,0.8);
  border-radius:3px;
  box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
  margin: 0px 60px;
  padding:10px 20px;
  max-width: 1107px;
  margin: 0 auto;
}

#content .title {
  clear: both;
  text-transform: uppercase;
  font-family: 'myriad-pro-condensed', Verdana;
  font-size: 20px;
  font-weight: bold;
  margin-bottom:10px;
  text-align: center;
}

#content .region {
  font-family: 'myriad-pro', Verdana;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  border-bottom: 1px solid #313131;
  font-size: 23px;
  margin-top: 20px;
  margin-bottom: 3px;
  padding-bottom: 12px;
}

#content ul {
  margin:4px 0 0 0;
  display:block;
}

#content ul li {
  float: left;
  width: 16.6%;
  height: 30px;
  margin: 7px 0;
}

#content ul li > a {
  display: block;
  color: inherit;
  cursor: pointer;
  color:#888888;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0em;
  min-width: 102px;
  transition: 0.2s ease-in color;
}

#content ul li > a:hover {
  color: rgb(10, 123, 56);
}

#content ul li .flag-icon {
  margin-right: 6px;
  height: 24px;
  vertical-align: middle;
  width: 32px;
  background-size: cover;
}


@media(max-width:768px){
  #content ul li {
    width: 25%;
    height: 70px;
    margin: 15px 0;
  }

  #content ul li .flag-icon {
    display: block;
    clear: both;
    margin: 0 auto;

  }

  #content ul li .name {
    display: block;
    text-align:center;
  }
}

@media(max-width:425px){
  #content ul li {
    width: 33.33333%;
  }
}