/**
 * Remove white empty navbar on regular devices
 * change is needed as it offers no usability
 */

@media only screen and (min-width: 1080px) {
  nav {
    display: none !important;
  }

  .content {
    margin-top: 0 !important;
  }
}

