body,
html {
  margin: 0;
  overflow: hidden;
  background-color: white;
  font-family: 'Poppins', sans-serif;
}
canvas {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

#view {
  width: 100vw;
  height: 100vh;
}
.remove-underline {
  text-decoration: none;
}
.background-glow {
  position: absolute;
  top: 54%;
  left: 50%;
  width: 100%;
  max-width: 100vh;
  height: 100vh;
  max-height: 100vw;
  transform: translate(-50%, -50%);
  /* background: radial-gradient(
    ellipse at center,
    rgba(0, 156, 255, 0.05) 25%,
    rgba(0, 156, 255, 0.15) 53%,
    rgba(0, 156, 255, 0.05) 56%,
    rgba(0, 156, 255, 0) 70%
  ); */
  background: radial-gradient(
    ellipse at center,
    rgba(0, 156, 255, 0.01) 10%,
    rgba(0, 156, 255, 0.05) 50%,
    rgba(0, 156, 255, 0.03) 10%,
    rgba(0, 156, 255, 0) 70%
  );
  z-index: 200;
  pointer-events: none;
}

#PlaceName {
  font-size: 20px;
  font-weight: 500;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  user-select: none;
}

#location-details-container {
  background-color: transparent;

  width: 100vw;
  height: 100vh;
  user-select: none;
  display: none;
}

.location-details {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-40%, -40%);
}

.city-name {
  font-size: 64px;
  color: #ddd;
  font-weight: 500;
  display: block;
}

.country-name {
  font-size: 64px;
  color: #ddd;
  font-weight: 500;
  display: block;
}

.links-container {
  color: #ddd;
  font-weight: 500;
  display: block;
  padding-top: 20px;
}

.result-link {
  font-size: 40px;
  color: #ddd;
  font-weight: 500;
  display: block;
  padding-top: 10px;
  text-decoration: #fcdcbf;
}

#back-btn {
  color: white;
  position: absolute;
  top: 15px;
  left: 10px;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
  display: none;
}

@media screen and (max-width: 1600px) {
  html {
    font-size: 10px;
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 10px;
  }
}

@media only screen and (min-width: 1200px) {
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #d8d9d9;
  }

  ::-webkit-scrollbar {
    width: 8px;
    background-color: #d8d9d9;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
  }
}
