@import url("https://fonts.googleapis.com/css2?family=Manrope&family=Montserrat:wght@800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.image {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.image .background {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image .loading-texture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: fill;
}

.map-info {
  position: absolute;
  z-index: 2;
  top: 15%;
  left: 11%;
  color: white;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
}
.map-info .logo img {
  aspect-ratio: 390 / 80;
  /* height: auto; */
  margin-bottom: 20px;
}

.map-details {
  margin-top: 20px;
  margin-bottom: 20px;
}
.map-details h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 36px;

  margin-bottom: 12px;
}

.map-details p {
  font-size: 18px;
  max-width: 600px;
  color: #bdbdbd;
}
.map-details p.map-id {
  font-size: 12px;
  color: rgba(134, 134, 134, 0.8);
  text-shadow: none;
}
