@font-face {
  font-family: "Arial";
  src: url("fonts/Arial/arial.ttf");
}

body {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: "Arial";
}
.loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100px;
}
.overlay {
  width: 80%;
  display: none;
  overflow: hidden;
  padding: 20px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.6);
  transform: translateY(20px);
  margin: auto;
  text-align: center;
}

.container {
  z-index: 0;
  pointer-events: none;
  background-color: #FFF;
  width: 90%;
  max-width: 500px;
  border: 4px solid #000;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: start;
}
.container img {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  grid-area: 1 / 1;
  max-width: 100%;
  height: auto;
  transition: filter 0.5s linear;
}

button, input {
  font-size: 40px;
  font-family: "Arial";
}
.customButton {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
  background-color: green;
  border: 3px solid green;
  cursor: pointer;
  color: #FFF;
  border-radius: 100px;
  font-weight: 900;
}
.customButton, input {
  width: 100%;
  max-width: 400px;
}
button:hover {
  filter: brightness(1.2);
}

.mapImage, .tinted {
  z-index: 1 !important;
}
.tinted {
  filter: sepia(100%) hue-rotate(130deg) saturate(100);
}
.blue {
  color: blue;
}
.red {
  color: red;
}