h1, h2, p, button, a {
  margin: 0;
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}

img {
  image-rendering: pixelated;
  cursor: pointer;
}

body {
  overflow-x: hidden;
  margin: 0;
  background-image: url(xcf/V1_Town_shop_view.png);
  background-size: contain;
  -webkit-backdrop-filter: blur(2px) brightness(60%);
          backdrop-filter: blur(2px) brightness(60%);
  width: 100vw;
  height: 1000vh;
}

* {
  scrollbar-color: rgba(105, 105, 105, 0.7333333333) rgba(0, 0, 0, 0.7333333333);
}

.ontop {
  position: absolute;
  top: 0;
  width: 100vw;
  padding: 40px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 1s;
  gap: 20px;
}
.ontop > div {
  background: linear-gradient(-5deg, rgba(232, 232, 232, 0.3333333333), #c2c2c2);
  border: solid black 10px;
  border-image-source: linear-gradient(-5deg, #9c9c9c, #696969);
  width: calc(90vw - 20px);
  padding: 10px;
}
.ontop > div h1 {
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 5px 5px black;
  margin-bottom: 20px;
}
.ontop > div div {
  background-color: rgba(105, 105, 105, 0.7333333333);
  padding: 10px;
  border-radius: 10px;
}
.ontop > div p {
  font-size: 2rem;
  color: #e0e0e0;
  padding-left: 50px;
  width: calc(100% - 100px);
}
.ontop > div a {
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.7333333333);
  border: inset #353535 5px;
  text-decoration: none;
  color: #ffffff;
  padding: 5px;
  margin: 10px 5px;
}

#top {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
#top h1 {
  font-size: 2.5rem;
  margin: 10px 0;
  color: #ffffff;
  background-color: rgba(105, 105, 105, 0.7333333333);
  padding: 10px;
  border-radius: 10px;
}
#top h2 {
  font-size: 2rem;
  margin: 10px 0;
  color: #ffffff;
  background-color: rgba(105, 105, 105, 0.7333333333);
  padding: 10px;
  border-radius: 10px;
}

#topButton {
  position: sticky;
  display: block;
  top: 10px;
  padding: 10px;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.7333333333);
  border: inset #353535 5px;
  text-decoration: none;
  color: #ffffff;
  z-index: 2;
}

.art {
  display: flex;
  overflow-x: auto;
  justify-content: space-between;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.7333333333);
  padding: 10px;
  border-radius: 10px;
}
.art img {
  z-index: 1;
  height: 200px;
  filter: drop-shadow(5px 2px 5px #ffffff);
  border-radius: 10px;
}

#snowstorm {
  position: sticky;
  z-index: -10;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}

.popup {
  position: sticky;
  top: 10px;
  left: 10px;
  width: calc(100vw - 60px);
  height: calc(100vh - 40px);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7333333333);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}
.popup button {
  width: 100%;
  font-size: 3rem;
  position: sticky;
  top: 10px;
}
.popup img {
  width: 100%;
}
.popup--hidden {
  pointer-events: none;
  display: none;
}/*# sourceMappingURL=reflection_style.css.map */