@import url("https://fonts.googleapis.com/css2?family=Rammetto+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chivo:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  font: inherit;
  accent-color: #fc00ff;
  color: white;
  font-family: "Chivo", sans-serif;
}

img {
  width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle, hsl(0, 0%, 15%) 0%, hsl(0, 0%, 20%) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  color: hsl(0, 0%, 0%);
  font-family: sans-serif;
  position: relative;
  min-height: 100vh;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar {
  display: none;
}

::selection {
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 0%);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
  color: hsl(0, 0%, 100%);
}

.linkoverlay {
  position: absolute;
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: hsla(0, 0%, 0%, 0.5);
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
}
.linkoverlay a:hover {
  text-decoration: underline;
}

svg {
  height: 100vh;
  width: 100%;
  margin-inline: auto;
  display: block;
  filter: drop-shadow(0rem 0rem 1rem rgba(0, 0, 0, 0.2));
  object-fit: contain;
}

path, polygon {
  stroke: black;
  fill: #5eb3bd;
  transition: all 0.3s;
}
path.visited, polygon.visited {
  fill: #1fe8ff;
  cursor: pointer;
}
path.visited.active, path.visited.hovered, polygon.visited.active, polygon.visited.hovered {
  filter: url(#hover);
  fill: #00e4ff;
}

#phone-nav {
  display: none;
  padding: 1rem;
}
#phone-nav h2 {
  font-family: "Rammetto One", cursive;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
#phone-nav h2:not(:first-of-type) {
  margin-top: 1.2rem;
}
#phone-nav a {
  margin-left: 0.8rem;
  font-size: 1.1rem;
  position: relative;
}
#phone-nav a::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.3rem;
  border-radius: 30%;
  aspect-ratio: 1;
  background-color: white;
  top: 50%;
  transform: translateY(-50%);
  rotate: 45deg;
}

@media screen and (max-width: 750px) {
  svg {
    display: none;
  }
  #phone-nav {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
