* {
  margin: 0;
  padding: 0;
  color: white;
}

body {
  background: black;
  font-family: 'PressStart2P';
}

canvas {
  max-width: 100vw;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

#canvases {
  position: absolute;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

#info-wrap {
  display: flex;
  pointer-events: none;
}

#text {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#text > * {
  z-index: 100;
  color: white;
  min-width: 100vw;
  text-align: center;
}

#title {
  font-family: 'Title-V1';
  font-size: 80px;
  line-height: 1.5;
  display: flex;
  width: 100vw;
  word-spacing: 40px;
  letter-spacing: -5px;
}

#start-text {
  font-family: 'PressStart2P';
  font-size: 24px;
  color: gray;
}

@media ( max-width: 1020px ) {
  #title {
    font-size: 60px;
  }
}

@media (max-width: 700px) {
  #title {
    font-size: 40px;
  }
  #start-text {
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  #title {
    font-size: 36px;
  }
  #start-text {
    font-size: 16px;
  }
}



.theme-text {
  color: white; /*color code parchment  #f9e076*/
}

.shadow-text {
  position: absolute;
  width: 100%;
}

.shadow-color {
  color: gray;
}

.title-text {
  position: relative;
  width: 100%;
}

#game-mode p:first-child {
  color: gray;
}

.mode-choice {
  font-size: 1.9rem;
  color: gray;
  display: flex;
  justify-content: center;
}

#enter-text {
  color: white;
}

#mission-text {
  font-size: 24px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  user-select: none;
}


.target-company {
  color: #00ff00; /* Set the desired color for the blob name */
}

#static {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#gas-meter {
  z-index: 2;
  margin: auto auto 0 auto;
  display: flex;
}

#music-toggle {
  z-index: 2;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
