body, html {
  margin: 0;
  padding: 0;
  overflow: auto;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #001f3f;
}

#slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #001f3f;
  z-index: 100;
  display: flex;
  align-items: center;
}

#slideshow .slideshow-track {
  display: flex;
  width: max-content;
}

#slideshow img {
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-right: 20px;
}

#gameCanvas {
  display: block;
  background-color: #001f3f;
  width: 1300px;
  height: 800px;
  position: relative;
  z-index: 1;
}

#popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

#reset-button {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 101;
  color: white;
}



#wrapper {
  transform-origin: top left;
}
#wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  box-sizing: border-box;
  padding-top: 20px; 
}


.popup-content {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.popup-content img {
  max-width: 80vw;
  max-height: 80vh;
}

.popup-content button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 16px;
}
