body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f0f0f0; /* optional background color */
}

.game-container {
  position: relative;
  /* Set the width according to your game's requirements */
  width: 800px; /* adjust this value as needed */
}

#logo-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000; /* Ensures that the logo appears on top of other elements */
}

#logo {
  width: 100px; /* You can adjust the size according to your logo's dimensions */
  height: auto; /* This maintains the aspect ratio */
}
