body {
  background-color: black;
  background-image: url("assets/background.gif");
  background-size: auto;
  background-repeat: repeat;
  background-position: top left;

  color: lime;
  font-family: 'Courier New', monospace;

  cursor: url("assets/cursor.png") 0 0, auto;
}


h1, h2 {
  text-shadow: 2px 2px green;
}

.nav a {
  color: yellow;
  text-decoration: none;
  font-weight: bold;
}

.frame {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 70%;
  border: 6px double lime;
}

.left {
  width: 30%;
  border-right: 2px double green;
  padding: 10px;
}

.right {
  width: 70%;
  padding: 10px;
}

.counter {
  width: 320px;
  margin: 20px auto;
  border: 2px groove yellow;
  padding: 10px;
  background-color: black;
  color: lime;
  font-family: 'Courier New', monospace;
  text-align: center;
}

.counter iframe, .counter img {
  max-width: 100%;
}


.guestbook {
  border: 6px double lime;
  background-color: black;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  width: 70%;
}

.comment {
  text-align: left;
  margin-bottom: 10px;
}

.underline {
  width: 70%;
  margin: auto;
  border-bottom: 2px solid yellow;
}

.left h3 {
  border-bottom: 2px solid yellow;
  padding-bottom: 8px;
  margin-bottom: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.game-box {
  border: 4px double yellow;
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin: 20px auto;
  width: 70%;
}

.game-left {
  width: 60%;
}

.game-title {
  font-size: 24px;
  font-weight: bold;
  color: yellow;
  text-shadow: 1px 1px green;
  margin-bottom: 10px;
}

.game-desc {
  font-size: 16px;
  line-height: 1.4;
  color: lime;
}

.divider {
  width: 2px;
  background: yellow;
  height: 140px;
  margin: 0 20px;
}

.game-right {
  width: 35%;
  text-align: center;
}

.game-img {
  width: 100%;
  height: auto;
  border: 2px solid lime;
  background-color: black;
}

.frame.full {
  justify-content: center;
}

.frame.full .right {
  width: 100%;
  text-align: center;
}

.box {
  background-color: black;
  border: 6px double lime;
  padding: 15px;
  box-shadow: inset 0 0 8px #003300;
}