body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Amatic SC';
}
#map {
  height: 100vh;
  width: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.7); /* Gray background */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}
.domain-name {
  font-size: 3em;
  margin-bottom: 20px;
  text-align: center;
}
.location-name {
  font-size: 2em;
  text-align: center;
  min-height: 1.5em; /* Ensure space is reserved for the location name */
}
#fullscreen-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url('full.png') no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
}