* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #222222;
  position: relative;
  min-height: 100vh;
  font-family: "Bayon", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 1);
}

.shortcut-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: fixed;
  z-index: 100;
  background-color: rgba(172, 139, 54, 1);
  bottom: 20px;
  right: 20px;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12);
  transition: all 400ms ease;
  /* mix-blend-mode: difference; */
}
.shortcut-wa a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shortcut-wa:hover {
  transition: all 400ms ease;
  background-color: rgba(172, 139, 54, 0.7);
  backdrop-filter: blur(10px);
}

.text1 {
  position: fixed;
  bottom: -10%;
  width: 100vw;
  overflow: hidden;
  z-index: -99;
  opacity: 0.3;
}
.text2 {
  position: fixed;
  width: 100vw;
  overflow: hidden;
  z-index: -99;
  opacity: 0.3;
}

.scrolling-text {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  will-change: transform;
  backface-visibility: hidden;
}

.scrolling-text .scrolling-text-content {
  color: #2e2e2e;
  font-size: 300px;
  white-space: nowrap;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  line-height: 1em;
  margin: 50px 0;
}
