html, body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: black;
  font-family: 'Ropa Sans', sans-serif;
}

.container {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.logo {
  width: 35%;
}

.content {
  color: white;
  width: 40%;
  margin-top: auto;
  margin-bottom: auto;
}

.content p {
  font-size: 20px;
  line-height: 26px;
}

.content-impressum {
  color: white;
  width: 80%;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links ul li {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
  padding-top:10px;
  text-align: right;
}

a {
  text-decoration: none;
  color: #777;
}

a:hover {
  color: white;
}

a.impressum {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {

  .container {
    flex-direction: column;
    justify-content: flex-start;
  }

  .logo {
    width: 80%;
    margin-top: 40px;
  }

  .content {
    width: 90%;
    margin-top: 20px;
  }

  .content p {
    font-size: 18px;
    line-height: 22px;
  }

}