* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: rgb(30, 30, 50);
  color: white;
  height: 100dvh;
  width: 100dvw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gameWrapper {
  position: relative;
}

.menu {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  background-color: rgba(0, 0, 0, 0.45);
  color: white;
  backdrop-filter: blur(5px);
  cursor: pointer;
  user-select: none;
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}

.menu.hidden {
  opacity: 0;
}

.menuTitle {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 8px;
}

.menuSpan {
  font-size: clamp(1rem, 2vw, 1.6rem);
}

.menuText {
  color: #bbb;
  font-size: 0.95rem;
}

.map3D {
  background-color: black;
  width: 100dvw;
  height: 100%;
}

.minimapWrapper {
  position: absolute;
  left: 10px;
  bottom: 10px;
  height: 30%;
  aspect-ratio: 1 / 1;
  border: 6px solid white;
  border-radius: 16px;
}

.minimap {
  aspect-ratio: 1 / 1;
  height: 100%;
  border-radius: 14px;
}

.playerMap {
  position: absolute;
  aspect-ratio: 1 / 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

