.App {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  font-family: "Lora";
  min-width: 1070px;
}

.Sidebar {
  z-index: 100;
}

.Content {
  z-index: 0;
  padding: 16px 50px 0;
  box-sizing: border-box;
  min-width: 800px;

  overflow-y: scroll;
  height: 100vh;
}

.MainLink {
  position: relative;
  z-index: 10;
  font-size: 20px;
  letter-spacing: 10px;
  color: #c3c3c3;
  border-bottom: 1px solid #939393;
  padding: 4px 0px 10px;
  display: inline-block;
  margin: 0 0 10vh;
  width: 272px;
  white-space: nowrap;
}

@media only screen  and (min-device-width : 320px)  and (max-device-width : 568px) and (orientation:portrait){
  .App {
    position: relative;
    overflow-y: auto;
    min-width: 960px;
    height: 100vh;
  }

  .MainLink {
    display: none;
  }

  .Content {
    min-width: auto;
    padding-top: 8vh;
  }
}

