body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #121212 !important;
  overflow: hidden;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.left {
  width: 12vw;
  min-width: 100px;
  background-color: #121212 !important;
  border: none;
  height: 100%;
}

.right {
  flex: 1;
  background-color: #121212 !important;
  border: none;
  height: 100%;
}

/* Mobilfix */
@media (max-width: 600px) {
  .left {
    width: 40vw;
    min-width: 120px;
  }
}

