* {
  box-sizing: border-box;
}
body {
  font-family: Arial;
}
#mapContainer {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 32%;
  height: 35%;
  border: 2px solid black;
}
.map {
  background-color: blue;
  border: 1px solid black;
  height: 85%;
  z-index: 8;
}
#guessButton {
  width: 100%;
  height: 15%;
  text-align: center;
  border: none;
  border-radius: 0;
}
#roundInfo {
  margin-inline: 1rem;
}
#endWindow {
  display: none;
}
#gameField {
  display: none;
}
#startWindow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
#startButton {
  width: 50%;
  height: 20%;
  margin: 0 auto;
}
#gameField {
  width: 100%;
  height: 100%;
}
.infoSpan {
  font-size: 25px;
}
#locationPopup {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  opacity: 0.75;
  z-index: 10;
  padding: 1rem;
}
#panoramaDisplay {
  width: auto;
  height: 95%;
  z-index: 7;
  margin-top: 1rem;
}
.marker-class {
  --markerWidth: 6rem;
  width: var(--markerWidth);
  height: 2rem;
  position: absolute;
  left: calc(var(--markerWidth) / -2);
  top: -0.75rem;

  font-size: 12px;
  border: 2px solid black;
  background-color: white;
  text-align: center;
  display: inline-block;
  border-radius: 0.25rem;
  padding: 0.4rem;
  opacity: 0.75;
  transition: all 0.5s;
}
.marker-class:hover {
  opacity: 1;
  border: 2px solid lightblue;
  transition: all 0.2s;
}
button {
  min-width: 3rem;
  padding: 0.25rem;
  border: 2px solid black;
  background-color: white;
  border-radius: 0.75rem;
  font-size: 21px;
}
button:hover {
  background-color: lightblue;
  transition: all 0.2s;
}
