@font-face {
  font-family: Gabella;
  src: url(fonts/GabellaShiny.ttf);
}

@font-face {
  font-family: Logos;
  src: url(fonts/ember-logos.ttf);
}

body {
  background: black;
  color: white;
  margin: 0;
}

.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  position: relative;
  z-index: 1;
}

#video-bg {
  background-attachment: scroll;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: scale(1);
  width: 100vw;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#video-bg>video {
  min-width: 100%;
}

#video-bg:before {
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  background-image: url(img/gplay.png), linear-gradient(0deg, transparent 10%, rgba(0, 0, 0, 0.6) 100%);
  background-size: 100px, cover;
  background-position: center, 0% 0%;
  background-repeat: repeat, repeat;
}

aside.portrait {
  background-image: url(img/ember-swoosh.png);
  width: 300px;
  height: 400px;
  background-size: contain;
  background-position: center, 0% 0%;
  background-repeat: no-repeat;
  margin: 0 auto;
}

article.content {
  background: rgba(0, 0, 0, 0.3);
  margin: 30px;
  padding: 50px;
  border: 1px rgba(255, 255, 255, 0.7) solid;
}

.image-title {
  width: 100%;
  margin: 0 auto;
}

.links-flex {
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
  padding-top: 20px;
}

.flags-flex {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding-top: 20px;
}

.flag-item {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding-top: 20px;
  margin: 0 30px;
}

.links-flex.group:not(:last-child) {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}

.link-item {
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 42px;
  background-color: #fff;
  background-image: linear-gradient(180deg, #fff, #919191);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  transition: transform .3s;
}

.link-item:hover {
  transform: scale(110%);
  background-color: #ffcd38;
  background-image: linear-gradient(145deg, #ffcd38, #755600);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

img.link-logo.svg {
  display: inline-block;
  max-height: 55px;
  max-width: 40px;
  margin-right: 15px;
}

.link-item a:link, .link-item a:visited, .link-item a:hover, .link-item a:active {
  text-decoration: none;
}

div.link-item a {
  font-family: Gabella;
  color: white;
}

span.logo {
  font-family: Logos;
  font-size: 40px;
  margin-right: 12px;
  vertical-align: text-bottom;
}

img.flag {
  height: 75px;
  box-shadow: 8px 8px 10px 0px #0000008a;
}

div.copyright {
  font-family: Ubuntu;
  font-size: 30px;
  width: 100%;
  display: block;
  text-align: center;
}

@media all and (max-width: 580px) {
  article.content {
    padding: 40px 20px;
  }

  div.link-item .link-label {
    display: none;
  }

  .flag-item {
    margin: 0 15px;
  }
}