.main-section {
  position: relative;
}

.font-sign-painter {
  font-family: "Satisfy", cursive;
}

html {
  scroll-behavior: smooth;
}

.main-section::before {
  content: '';
  /* Required to create the pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: url('/images/main_image.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(20px);
  /* Blur only the background */
  z-index: -1;
  /* Ensure it stays behind content */
}

.text-cutout {
  color: black;
  font-weight: bold;
  text-align: center;
  mix-blend-mode: screen;
}

.right-triangle {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 3rem 100vw;
  border-color: transparent transparent #170100 transparent;
  transform: rotate(0deg);
  align-self: end;
}

.left-triangle {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3rem 100vw 0 0;
  border-color: #170100 transparent transparent transparent;
  transform: rotate(0deg);
  position: sticky;
}

.pink-image {
  filter: invert(94%) sepia(14%) saturate(2129%) hue-rotate(209deg) brightness(104%) contrast(103%);
}

.auto-rows {
  grid-template-rows: 1fr auto;
}

.pink-shadow:hover {
  -webkit-box-shadow: 0px 2px 35px 0px rgba(255, 203, 255, 0.5);
  -moz-box-shadow: 0px 2px 35px 0px rgba(255, 203, 255, 0.5);
  box-shadow: 0px 2px 35px 0px rgba(255, 203, 255, 0.5);
}

.leaflet-control-attribution {
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: rgba(255, 255, 255, 0.25) !important;
}

.leaflet-control-attribution>a {
  color: rgba(255, 255, 255, 0.5) !important;
}

img.huechange {
  filter: brightness(0)  invert(94%) sepia(14%) saturate(2129%) hue-rotate(209deg) brightness(104%) contrast(103%);
}