@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap");

.mt-6 {
  margin-top: 4rem !important;
}

.mt-7 {
  margin-top: 6rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

body {
  font-family: "Hina Mincho", serif;

  background: #000;
  color: #ccc;

  font-size: 1.5rem;
}

#logo-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

@media (max-width: 575px) {
  #logo-section-desktop {
    position: relative;
    width: 700px;
    height: 700px;
    display: block;
  }
}

#logo-section-desktop {
  position: relative;
  width: 800px;
  height: 800px;
  transform-origin: center center;
  /* display: block; */
}

#sketch-holder {
  position: absolute;
  /* transform: translate(0, 0) scale(1); */
  /* transform-origin: center center; */
  /* right: 0; */
  /* top: 0; */
  height: fit-content;
  width: fit-content;
}

@media (max-width: 575px) {
  .sticky-col {
    position: relative;
    height: max-content;
  }

  #logo-section-desktop {
    position: relative;
    width: 500px;
    height: 430px;
  }

  #sketch-holder {
    position: absolute;
    transform: translate(-0%, -20%) scale(0.8);
    transform-origin: top left;
    left: 0;
    top: 0;
  }
}

a {
  text-decoration: none;
  color: #ccc;
}

.btn-clear {
  background: transparent !important;
  color: #fff !important;
  border-color: #555555;
}

.btn-clear:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #555555;
}

.gradient-text-schedule {
  background: radial-gradient(
    circle,
    #faaedc 0%,
    /* start */ #acaaec 33%,
    /* first blend stop */ #bcf7d2 66%,
    /* second blend stop */ #ece3bc 100% /* end */
  );
  background-size: 1000% 1000%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 60s ease infinite;
}

.gradient-text {
  background: linear-gradient(270deg, #ff6ec4, #7873f5, #4ade80, #facc15);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 30s ease infinite;
}

.gradient-text-wpu {
  background: linear-gradient(130deg, #c580eb, #cb93ea, #bc55f3, #dbb7ee);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.bw {
  filter: grayscale(100%);
}
