html {
  background: url('/graphics/spacebg.gif');
  box-sizing: border-box;
  font-family: Courier, monospace;
  color: #fff;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  gap: 0;
}

.left {
  width: 750px;
  position: relative;
}

.item {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.title {
  font-family: 'Kode Mono';
  font-size: 200%;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.buttons {
  display: flex;
  gap: 10px;
}

.buttons div {
  height: 50px;
  width: 50px;
  vertical-align: text-bottom;
  border: solid #fff 1px;
  background: #000;
  padding: 15px 10px 10px 10px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}