html {
  scroll-behavior: smooth;
}
body {
  background-color: #eeecea;

  overflow-x: hidden;
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
p {
  word-wrap: break-word;
  hyphens: auto;
}
.site-main {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  padding-top: 6rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
@media (min-width: 1560px) {
  .site-main {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 992px) {
}
@media (min-width: 1200px) {
  .site-main {
    overflow: hidden;
  }
}

.menu-content {
  width: 100%;
  max-width: 1564px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid black;
  padding: 1rem;
}

@media (min-width: 1560px) {
  .menu-content {
    padding-left: 0;
    padding-right: 0;
  }
}
ul {
  list-style-type: disc;
  list-style-position: inside;
}
.spinner_stamp {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.text-stroke {
  color: #eeecea;
  -webkit-text-stroke: 1px black;
  -moz-text-stroke: 1px black;
  -ms-text-stroke: 1px black;
}

/* .text-stroke:hover {
  color: #000;
} */

.cursor {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  top: var(--y, 0);
  left: var(--x, 0);
  transform: translate(-50%, -50%);
  z-index: 2;
  mix-blend-mode: difference;
}

.here:hover .cursor {
  display: block;
}

.here:not(:hover) .cursor {
  display: none;
}

.top-arrow::before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 13px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="28" viewBox="0 0 32 28" fill="none"><path d="M18.3333 2.33301L30 13.9997M18.3333 25.6663L30 13.9997M30 13.9997H2" stroke="black" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: -2px;
  transition: all 0.3s ease;
}

.top-arrow:hover::before {
  transform: translateX(5px);
}
