  @font-face {
    font-family: 'Anton';
    src: url('fonts/AntonRegular.woff2') format('woff2')
  }

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

  body {
    font-family: Geneva, Verdana, sans-serif;
    color: black;
    background: #d2d2d2 url('img/bg.jpg') no-repeat center center fixed;
    background-size: cover;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0 20px;
    color: white;
    line-height: 1em;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    padding-top: 20px;
  }

  footer ul.links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
  }

  footer ul.links li {
    padding: 4px 20px;
    border-left: 1px solid #999;
  }

  footer ul.links li:first-child {
    border-left: none;
  }

  footer ul.links li a {
    color: white;
    text-decoration: none;
  }

  footer ul.links li a:hover {
    text-decoration: underline;
  }

  footer .copyright {
    margin: 10px 0;
    ;
  }

  .content {
    /* flex-grow: 1; */
    text-align: center;
    margin-bottom: 100px;
  }

  .content img {
    height: 280px;
    width: auto;
    /* display: block; */
  }

  .content .title {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    /* font-weight: bold; */
    font-size: 5em;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  }

  @media (max-height: 700px),
  (max-width: 700px) {
    .content img {
      height: 200px;
    }

    .content .title {
      font-size: 2.5em;
    }

    footer {
      font-size: 0.9em;
      position: relative;
    }
  }

  @media (orientation: landscape) {
    @media (max-height: 600px) {
      body {
        flex-direction: row;
      }

      .content {
        flex-grow: 1;
        width: 100%;
        margin-bottom: 0;
      }

      footer {
        position: relative;
        flex-shrink: 1;
      }
    }
  }