@font-face {
  font-family: 'Retro';
  src: url('RetroGaming.ttf') format('truetype');
}

body {
  margin: 0;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Retro', sans-serif;
}

* {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.disclaimer {
  position: fixed;
  bottom: 10px;
  left: 10px;
  color: rgba(221, 221, 221, 0.7);
  font-size: 15px;
  font-family: 'Retro', sans-serif;
  z-index: 9999;
  transition: opacity 2s ease;
  opacity: 1;
}

.tutorial {
  background-image: url("shiftgroupbuy.png");
  width: 160px;
  height: 130px;
  position: absolute;
  top: 150px;
  left: 100px;
}

.canYouTellILikeContainers-GBMemory {
  width: 640px;
  height: 576px;
  background: black;
  border-style: outset;
  border-width: 5px;
  border-color: #444;
  position: relative;
  overflow: hidden;
}

.gamelist {
  background-image: url("sprites/gamelist.png");
  width: 184px;
  height: 52px;
  position: relative;
  top: 32px;
  left: 32px;
}

.redgameboy {
  background-image: url("sprites/gameboy1.png");
  width: 116px;
  height: 180px;
  position: relative;
  top: 56px;
  left: 68px;
}

.yellowgameboy {
  background-image: url("sprites/gameboy2.png");
  width: 116px;
  height: 180px;
  position: absolute;
  top: 108px;
  left: 228px;
}

.purplegameboy {
  background-image: url("sprites/PurpleGBMain.png");
  width: 192px;
  height: 324px;
  position: absolute;
  top: 36px;
  left: 376px;
}

.nogames {
  background-image: url("sprites/nogame.png");
  width: 308px;
  height: 32px;
  position: absolute;
  top: 192px;
  left: 160px;
}

.gblogo {
  background-image: url("sprites/GBText.png");
  width: 244px;
  height: 44px;
  position: absolute;
  top: 300px;
  left: 108px;
}

.probablystorage-blue {
  background-image: url("sprites/TEXT1.png");
  width: 96px;
  height: 40px;
  position: absolute;
  top: 344px;
  left: 32px;
}

.memoriam {
  background-image: url("sprites/MEMORY.png");
  width: 84px;
  height: 28px;
  position: absolute;
  top: 356px;
  left: 140px;
}

.memoryF-container {
  position: absolute;
  top: 388px;
  left: 64px;
  display: flex;
}

.memoryF {
  background-image: url("sprites/memStorage_F.png");
  width: 64px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
}

.memoryF.grey {
  background-image: url("sprites/memStorage_F-USED.png");
  width: 60px;
  height: 60px;
}

.memoryB-container {
  position: absolute;
  top: 452px;
  left: 64px;
  display: flex;
}

.memoryB {
  background-image: url("sprites/memStorage_B.png");
  width: 32px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
}

.news-whitelinez {
  position: absolute;
  bottom: 56px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #dddddd;
}

.news-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  white-space: nowrap;
}

.news-content {
  display: inline-flex;
  align-items: center;
  position: absolute;
  white-space: nowrap;
  padding-top: 7px;
}

.news-title-thingy {
  background-image: url("sprites/npmp.gif");
  width: 128px;
  height: 48px;
  margin-right: 20px;
}

.news-text {
  color: #dddddd;
  font-size: 40px;
  font-family: 'Retro', sans-serif;
}

/* yall rocking with menus */

.hidden {
  display: none !important;
}

.gamelist-menu {
  position: absolute;
  top: 96px;
  left: 64px;
  display: flex;
  flex-direction: column;
  color: white;
  font-family: 'Retro', sans-serif;
}

.game-item {
  display: block;
  width: 512px;
  height: 32px;
  line-height: 32px;
  background: transparent;
  color: white;
  position: relative;
  cursor: pointer;
  font-size: 25px;
  font-family: 'Retro', sans-serif;
  text-decoration: none;
}

.game-item,
.game-item:link,
.game-item:visited,
.game-item:active,
.game-item:focus {
  color: white;
  background: transparent;
  text-decoration: none;
}

.game-item:hover {
  background: white;
  color: black;
}

.selector-left {
  width: 28px;
  height: 44px;
  background-image: url("sprites/selector_left.gif");
  background-repeat: no-repeat;
  position: absolute;
  top: -4;
  display: none;
}

.selector-right {
  width: 28px;
  height: 44px;
  background-image: url("sprites/selector_right.gif");
  background-repeat: no-repeat;
  position: absolute;
  top: -4;
  display: none;
}

.selector-left { left: -32px; }
.selector-right { right: -32px; }

.game-item:hover ~ .selector-left,
.game-item:hover ~ .selector-right {
  display: block;
}