* {
    margin: 0;
    -moz-box-sizing: border_box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: sans-serif;
    font-size: 1em;
    color: white;
}


/* If screen size is 600px wide, or less*/
@media screen and (max-width: 600px) {

  .wrapper {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    margin: 0 auto;
    background-color: black;
}


  .content {
    width: 100%;
    height: 500px;
    position: absolute;
    background-image: url(media/ZC_logo_mob.png);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 0;

  }

  #legend {
    display: none;
  }

#legend-mob {
    display: block;
    width: 90%;
    max-height: 100px;
    margin: 400px auto 0 auto;
}

  .footer {
      width: 100%;
      height: 30px;
      display: block;
      position: absolute;
      margin: 0 auto;
      font-family: monospace;
      font-size: 0.8em;
      color: white;
      text-align: center;
      bottom: 0;
  }

}

/* If screen size is 601px wide, or more*/
@media screen and (min-width: 601px) {
  .wrapper {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    margin: 0 auto;
    background-color: black;
}

  .content {
    width: 88%;
    max-height: 400px;
    margin: 50px 50px 0 auto;
    position: absolute;
    background-image: url(media/ZC_logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 100px;

  }

  #legend-mob {
    display: none;
  }

#legend {
    width: 50%;
    height: 200px;
    margin: 400px auto 0 auto;
    padding-left: 15%;
}

.footer {
  width: 100%;
  height: 30px;
  display: block;
  position: absolute;
  margin: 0 auto;
  font-family: monospace;
  font-size: 0.8em;
  color: white;
  text-align: center;
  bottom: 0;
}

}