/* Rotation Overlay */
.rotation-container {
    display: none;
}

@media screen and (orientation:portrait) {

  /* Rotation Message */
  .rotation-container {
    display: block;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    /* cursor: wait; */

  }

  .rotation-content {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .rotation-img {
    max-width: 100%;
    width: 100px;
  }

  .rotation-msg {
    text-align: center;
    font-size: 7vmin;
    font-weight: bold;
    margin-left: 5vmin;
    margin-right: 5vmin;
  }
}

/* Responsive Menu bar */
@media screen and (max-width: 1200px) {
  .menu-bar {
    background-size: 100vw 80px;
  }
  .menu-bar {
    height: 50px;
  }
  .menu-button-img {
    max-width: 20px;
    max-height: 20px;
  }
}

/* Responsive Virtual Page */
@media screen and (max-width: 1200px) {
  
}