.content {
  padding: 20px;
}

  .content > .back {
    position: fixed;
    top: 80px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    background-color: #0d0d0b;
  }

    .content > .back > img {
      height:auto;
      width: 100%;
    }

  .content > .front {
  }

    .content > .front > .info {
      position: fixed;
      right: 20px;
      left: 680px;
      top: 100px;
      bottom: 20px;
      margin: 20px 20px 20px 20px;
    }

.content > .front > .info > div {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0px auto 0px auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

  .content > .front > .info > div > img {
    flex: 1 1 auto;
    width: 100%;
  }

    .content > .front > .menu {
      margin: 0px 15%;
      display: flex;
      flex-flow: row wrap;
      justify-content: flex-start;
      align-items: center;
      align-content: flex-start;
      margin-top: 20%;
    }

  .content > .front > .menu > a {
    flex: 0 0 auto;
    display: block;
    width: calc(50% - 20px);
    max-width: 280px;
    margin: 0px 10px 20px 10px;
    color: #FFFFFF;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    
  }

    .content > .front > .menu > a:hover {
      border: 2px solid white !important;
    }

    .content > .front > .menu > a > img {
      width: 100%;
      max-height: 150px;
      background-color: white;
    }

    .content > .front > .menu > a > span {
      position: absolute;
      left: 10px;
      bottom: 30px;
      font-size: 15px;
    }

    .content > .front > .menu > a > spanOLD {
      display: block;
      padding: 0px 20px 0px 20px;
      font-size: 20px;
      line-height: 50px;
      height: 50px;
      white-space: nowrap;
      overflow: hidden;
      background-image: url('../img/button.png');
      background-position: top right;
    }
    
@media only screen and (max-width: 1000px) {
  .content > .front > .info {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .content > .front > .menu {
    margin: 0px -20px 0px -20px;
  }

    .content > .front > .menu > a > span {
      font-size: 15px;
      line-height: 30px;
      height: 30px;
      padding: 0px 10px 0px 10px;
    }
}
