:root {
  --black: #000;
  --white: #fff;
}

html {
  box-sizing: border-box;
  font-family: "Germania One", system-ui;
}

button {
  font-family: "Germania One", system-ui;
  margin: 0 auto;
  display: block;
  background: 0;
  border-radius: 10px;
  font-size: 1.4rem;
  color: #fff;
  padding: 8px;
  cursor: pointer;
}

body {
  margin: 0;
  background-color: var(--black);
  overflow: hidden;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

#menuSection {
  width: 100%;
  height: 100%;
}

.menu-background {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.menu-background {
  picture {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
  }
}

.title,
.bottom-ui {
  color: var(--white);
  position: fixed;
  top: 20px;
  font-size: 4rem;
  filter: drop-shadow(3px 2px 1px #33333375);

  @media (min-width: 960px) {
    top: 15%;
  }
}

.bottom-ui {
  font-size: 2rem;
  top: unset;
  bottom: 20%;
}

.hidden {
  display: none;
}

#mapSection {
  position: relative;
  display: none;
  background-image: url(./assets/images/sprites/map_tile_1.png);
  height: 5000px;
  width: 5000px;
  cursor: all-scroll;

  &.active {
    display: unset;
  }
}