
#game-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

#mycanvas {
  background-color: #070707;
  margin: 0 auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.responsive-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 6, 6, 0.908);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.overlay img {
  position: absolute;
  z-index: 1;
  width: 60%;
  height: 100%;
  object-fit: contain;
}

.game-footer {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
