.top_bar {
  background-image: linear-gradient(to bottom, #333 , transparent);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 60px;
  z-index: 1000;
}
.logo {
  background-image: url('/images/scramble_logo_white.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  width: 90px;
  top: 0px;
  left: 0px;
  display: block;
  position: absolute;
  padding: 0px;
  margin: 20px;
  cursor: pointer;
}
.nav_menu {
  top: 0px;
  right: 0px;
  padding: 10px;
  padding-right: 50px;
  height: 50px;
  background-color: transparent;
  position: absolute;
  display: flex;
  justify-content: right;
}
.menu_item {
  color: white;
  text-align: center;
  text-shadow: 1px 1px 2px #333;
  padding: 20px;
  padding-top: 10px;
  display: inline;
  cursor: pointer;
}
.footer {
  height: 50px;
  bottom: 0px;
  width: 100%;
  font-size: x-small;
  color: #444;
  position: absolute;
  display: flex;
  justify-content: center;
  background-color: transparent;
  z-index: 1000;
}
.footer_item {
  margin: 10px;
  height: 100%;
  display: inline;
  cursor: pointer;
}
.footer_item_noclick {
  margin: 10px;
  height: 100%;
  display: inline;
}
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: large;
  color: #333;
  padding: 0px;
  margin: 0px;
}
@media (min-resolution: 200dpi) {
  body {
    font-size: xx-large;
  }
  .menu_item {
    padding: 30px;
    padding-top: 20px;
  }
  .logo {
    width: 210px;
    height: 70px;
  }
  .footer {
    font-size: x-large;
  }
  .top_bar {
    height: 120px;
  }
}