body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #191919;
}

a {
  display: flex;
}

.svg-box {
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#leftBg, #homeBg {
  background: #191919;
}

#rightBg {
  background: #66f1b8;
}

#lausanneImage,
#zurichImage,
#homeImage {
  width: 100vw;
}

@media screen and (orientation: landscape) {

  #homeBg {
    display: none;
  }

  #leftBg, #homeBg {
  background: #191919;
  }

  #rightBg {
    background: #66f1b8;
  }
  
  .svg-box {
    min-height: 100vh;
  }

  #lausanneImage,
  #zurichImage {
    width: auto;
    height: 100vh;
  }
  
  body,
  html {
    height: 100%;
    flex-direction: row;
  }
}