/* 共通リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

/* 戻るリンク */
.back-link {
  position: fixed;
  top: 10px;
  left: 10px;
  color: #fff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  z-index: 1000;
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* スクリーン共通 */
#screen {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
