* {
  font-family: Helvetica, sans-serif;
}

body {
  background: white;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5vh;
  justify-content: center;
  align-items: center;
}

#navBar {
  background-color: rgb(173, 230, 208);
  width: 100%;
  font-size: clamp(1px, 5vw, 30px);
  justify-content: center;
  align-items: center;
  padding: 5vh 5vw;
  text-align: center;
}

#selection {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  align-items: center;
  justify-content: center;
}

h3 {
  margin: 0;
}

#mapContainer {
  position: relative;
  width: 95vw;
  aspect-ratio: 50 / 35;
  max-width: 1000px;
}

#map {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mapPins {
  position: absolute;
  background: transparent;
  border: 0;
  transform: translate(-50%, -100%);
  z-index: 1;
}

.hide {
  visibility: hidden;
}

.show {
  visibility: visible;
}

#cryptidIdBox {
  padding: 15px;
  z-index: 2;
  border-radius: 5vw;
  background-color: rgb(173, 230, 208);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  display: none;
  max-width: 500px;
}

#summary,
#description,
#area,
#stateName #cryptidName {
  max-width: 50vw;
}

/* Cryptid Box Fonts */
#stateName,
#cryptidName,
#sigting,
#description,
#summary,
#area {
  font-size: clamp(1px, 2.5vw, 20px);
  line-height: normal;
  margin: 2vh;
}
