#visual {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

#visual .background-blobs {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes moveBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(calc(var(--x) * 1.2), calc(var(--y) * 1.2)) scale(1.3);
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(1);
  }
}

#visual .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(50px);
  animation: moveBlob var(--duration) infinite alternate ease-in-out;
}

/* 블러레이어 */
#visual .blur-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  background: rgba(18, 18, 18, 0.3);
  z-index: 2;
}

#visual .container {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#visual .container h2 {
  font-size: 36px;
}

#visual .container h1 {
  font-size: 64px;
  margin-top: 10px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;

  span {
    color: var(--color-accent);
  }
}

/* 애니메이션용 래퍼 */
#visual .container h1 #visual_changing_text {
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: width 0.6s ease;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE, Edge */
}
#visual_changing_text::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* 각 단어 기본 상태 */
#visual .container h1 #visual_changing_text .wordItem {
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateY(60%);
  transition: all 0.6s ease;
  white-space: nowrap;
  width: min-content;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE, Edge */
}
#visual_changing_text .wordItem::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* 등장 */
#visual .container h1 #visual_changing_text .wordItem.active {
  opacity: 1;
  transform: translateY(0);
}


/* 위로 나가면서 퇴장 */
#visual .container h1 #visual_changing_text .wordItem.exit {
  opacity: 0;
  transform: translateY(-60%);
}


#visual .container .link {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

#visual .container .link .link_box {
  width: 130px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--color-input-background);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #e0e0e0;
  transition: 0.2s ease;
}

#visual .container .link .link_box:hover {
  transform: scale(1.1);
}

#visual .container .link .link_box svg {
  fill: #e0e0e0;
}

#visual .arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 3;
  width: 20px;
  height: 50px;
  transform: translateX(-50%);
}

#visual .arrow .line {
  position: absolute;
  left: 50%;
  width: 3px;
  height: 0;
  background: #fff;
  animation: visual-line-animation 2s cubic-bezier(0.645, 0.045, 0.355, 1)
    infinite;
  transform: translate(-50%);
}

#visual .arrow .chevron {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3px;
  height: 20px;
  background: #fff;
  animation: visual-chevron-animation 2s cubic-bezier(0.645, 0.045, 0.355, 1)
    infinite;
  transform: translate(-50%) rotate(45deg);
  transform-origin: bottom right;
}

#visual .arrow .chevron:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 20px;
  background: #fff;
  transform: rotate(-90deg);
  transform-origin: bottom right;
}

/* 애니메이션 */
@keyframes visual-line-animation {
  0% {
    height: 0;
  }
  50% {
    height: 50px;
  }
  100% {
    bottom: 0;
    height: 0;
  }
}

@keyframes visual-chevron-animation {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#visual .visual_img {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 30%;
  z-index: 3;
}

@media (max-width: 768px) {
  #visual .container h2 {
    font-size: 16px;
  }

  #visual .container h1 {
    font-size: 24px;
    margin-top: 10px;
    color: white;
    text-align: center;
    span {
      color: var(--color-accent);
    }
  }
}

/* info */
#info {
  position: relative;
  margin-top: calc(100vh + 100px);
  width: 100%;
  z-index: 100;
  height: 220vh;
}
#info::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--color-background), #12121200);
  z-index: 10;
}

#info .container {
  padding-top: 30vh;
  position: sticky;
  top: 0;
}

#info h1 {
  position: relative;
  font-size: 45px;
  border-left: 3px solid var(--color-text);
  padding-left: 10px;
  color: #ffffff00;
  -webkit-text-stroke: 0.8px var(--color-text); /* 외곽선 두께와 색상 */
  color: transparent; /* 안쪽 채우기 제거 (선만 보이게) */
}


#info h1 span {
  color: #ffffff00;
  font-weight: bold;
  position: relative;
  -webkit-text-stroke: 1px var(--color-accent); /* 외곽선 두께와 색상 */
  color: transparent; /* 안쪽 채우기 제거 (선만 보이게) */

  img {
    position: absolute;
    top: -80px;
    left: -40px;
    width: 100px;
  }
}

#info h1 span#info_h1_name {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(-50%);
  transition: 0.2s ease;
  z-index: 1;
}

#info h2 {
  font-size: 20px;
  color: var(--color-text-subtle);
  margin-top: 20px;
  font-weight: 300;
}

#info .info_content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
  flex-wrap: wrap;
}

#info .info_content .item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 20px 8px 10px;
  transition: 0.4s ease;
  border-radius: 10px;
  cursor: pointer;
  background-color: var(--color-background);
  min-width: 150px;

  &:hover {
    background-color: var(--color-sub-background);
  }
}

#info .info_content .item .item_dital {
  display: flex;
  flex-direction: column;

  span {
    font-size: 13px;
    color: var(--color-text-subtle);
    font-weight: 300;
  }
  p {
    font-size: 20px;
    color: var(--color-text);
    font-weight: bold;
  }
}

@media (max-width: 768px) {
  #info h1 {
    font-size: 16px;
    -webkit-text-stroke: 0.3px var(--color-text); /* 외곽선 두께와 색상 */
    color: transparent; /* 안쪽 채우기 제거 (선만 보이게) */
  }
  #info h1 span {
    font-size: 16px;
    img {
      top: -40px;
      left: -20px;
    }
  }
  #info h1::after {
    top: 21px;
    left: 0.5px;
  }
  #info h2 {
    font-size: 12px;
    color: var(--color-text-subtle);
    margin-top: 5px;
    font-weight: 300;
    max-width: 95%;
    word-break: keep-all;
  }
  #info .info_content {
    flex-direction: column;
    align-items: start;
  }

  #info .info_content .item .item_dital {
    display: flex;
    flex-direction: column;

    span {
      font-size: 11px;
      color: var(--color-text-subtle);
      font-weight: 300;
    }
    p {
      font-size: 18px;
      color: var(--color-text);
      font-weight: bold;
    }
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  #info h1 {
    font-size: 34px;
    -webkit-text-stroke: 0.3px var(--color-text); /* 외곽선 두께와 색상 */
    color: transparent; /* 안쪽 채우기 제거 (선만 보이게) */
  }
}

/* awards section */

#awards {
  position: relative;
  width: 100%;
  padding-top: 400px;
  padding-bottom: 100px;
}

#awards .content {
  position: relative;
  width: 100%;
  z-index: 3;

  display: flex;
  justify-content: space-around;

  .awards_img {
    width: 40%;
    object-fit: cover;
    animation: floatX 2.5s ease-in-out infinite;
  }

  .right {
    width: 40%;
    height: 100%;

    h1 {
      color: var(--color-text-subtle);
      font-size: 48px;
    }
    ul {
      width: 100%;
      display: flex;
      flex-direction: column;
      margin-top: 30px;
      gap: 8px;
    }
    ul li {
      list-style: none;
      width: 100%;
      display: flex;
      gap: 10px;
      font-size: 25px;
      color: var(--color-text);
      align-items: center;
      cursor: pointer;
      opacity: 0;
      transform: translateY(-30px);
      transition: all 0.5s ease;
      height: 44px;
    }

    ul li.awards_show {
      opacity: 1;
      transform: translateY(0);
    }

    .medal_img {
      width: 29px;
    }

    .moveBtnContainer {
      width: 100%;
      display: flex;
      justify-content: right;
    }
          
    button {
    --glow-color: rgb(217, 176, 255);
    --glow-spread-color: rgba(191, 123, 255, 0.781);
    --enhanced-glow-color: rgb(231, 206, 255);
    --btn-color: rgb(100, 61, 136);
    border: .25em solid var(--glow-color);
    padding: 1em 3em;
    color: var(--glow-color);
    font-size: 15px;
    font-weight: bold;
    background-color: var(--btn-color);
    border-radius: 1em;
    outline: none;
    box-shadow: 0 0 1em .25em var(--glow-color),
            0 0 4em 1em var(--glow-spread-color),
            inset 0 0 .75em .25em var(--glow-color);
    text-shadow: 0 0 .5em var(--glow-color);
    position: relative;
    transition: all 0.3s;
    }

    /* button::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 120%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--glow-spread-color);
    filter: blur(2em);
    opacity: .7;
    transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
    } */

    button:hover {
    color: var(--btn-color);
    background-color: var(--glow-color);
    box-shadow: 0 0 1em .25em var(--glow-color),
            0 0 4em 2em var(--glow-spread-color),
            inset 0 0 .75em .25em var(--glow-color);
    }

    button::after {
      pointer-events: none;
      content: "";
      position: absolute;
      top: 120%;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: var(--glow-spread-color);
      filter: blur(2em);
      opacity: .7;
      transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
    }

    button:active {
    box-shadow: 0 0 0.6em .25em var(--glow-color),
            0 0 2.5em 2em var(--glow-spread-color),
            inset 0 0 .5em .25em var(--glow-color);
    }
  }
}

@keyframes floatX {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
}


@media (max-width: 768px) {
  #awards {
    display: flex;
    justify-content: center;
      padding-top: 150px;

  }
  #awards .content {
    flex-direction: column;
    align-items: center;
    width: 90%;

    .right {
      width: 100%;
      h1 {
        width: 100%;
        text-align: center;
        font-size: 25px;
      }

      ul li {
        height: 30px;
      }

      ul li img {
        width: auto !important;
        height: 30px !important;
      }

      ul li p {
      font-size: 12px !important;

      }
    }

    .moveBtnContainer {
      margin-top: 30px;
      width: 100%;
      display: flex;
      justify-content: center !important;
    }
     button {
      padding: 0.7em 2.5em !important;
      font-size: 13px !important;
      font-weight: bold !important;
    }
  }
}

@media (min-width: 769px) and (max-width: 1424px) {

  #awards .content {

    .right {
      h1 {
        font-size: 35px;
      }

      ul li {
        height: 40px;
      }

      ul li img {
        width: auto !important;
        height: 30px !important;
      }

      ul li p {
      font-size: 17px !important;

      }
    }
  }
}

/* skills section */

#skills {
  position: relative;
  width: 100%;
  height: calc(100vh + 200px);
  padding-top: 50px;
}

#skills .background {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#skills .background .round {
  max-width: 1400px;
  border-radius: 50%;
  width: 95%;
  height: 1400px;
  margin: 0 auto;
  background-color: var(--color-accent);
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 4px 8px var(--color-accent);
}

#skills .background .overlay {
  width: 100%;
  height: 100%;
  background-color: #121212c4;
  backdrop-filter: blur(30px); /* 뒤에 있는 배경을 블러 처리 */
  -webkit-backdrop-filter: blur(10px); /* 사파리 브라우저 대응 */
  z-index: 1;
}

#skills .background .down_overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--color-background), #12121200);
}

#skills .container {
  position: relative;
  z-index: 2;
}

#skills .topBar {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#skills .topBar .textContent {
  max-width: 70%;
  display: flex;
  flex-direction: column;

  h1 {
    font-size: 48px;
    color: var(--color-text);
    font-weight: bold;
  }

  h2 {
    font-size: 20px;
    color: var(--color-text-subtle);
    font-weight: 300;
    margin-top: 5px;
  }
}

#skills .ctrBar {
  width: 30%;
  display: flex;
  align-items: end;
  justify-content: right;
  gap: 10px;
}

#skills_input_1,
#skills_input_2 {
  display: none;
}

input[name="skills_tab"] {
  display: none;
}

#skills .ctrBar .tabButtons {
  display: flex;
}
#skills .ctrBar .tabButton {
  cursor: pointer;
  padding: 10px 10px;
  border-radius: 5px;
  font-size: 15px;
  color: var(--color-text);
  transition: 0.4s ease;
  &:hover {
    transform: scale(1.1);
  }
}

#skills_input_1:checked ~ #skills .tabButton[for="skills_input_1"],
#skills_input_2:checked ~ #skills .tabButton[for="skills_input_2"] {
  display: none;
}

#skills .tabs {
  margin: 0 auto;
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

#skills .tabs label {
  padding: 15px 20px;
  margin-top: 20px;
  border-bottom: 1px solid gray;
  color: var(--color-text-subtle);
  transition: 0.4s ease;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;

  &:hover {
    background-color: var(--color-input-background);
  }
}

#skills_tab_Lang:checked ~ #skills label[for="skills_tab_Lang"],
#skills_tab_Web:checked ~ #skills label[for="skills_tab_Web"],
#skills_tab_App:checked ~ #skills label[for="skills_tab_App"],
#skills_tab_Sybersecurity:checked
  ~ #skills
  label[for="skills_tab_Sybersecurity"],
#skills_tab_Databases:checked ~ #skills label[for="skills_tab_Databases"],
#skills_tab_Frameworks:checked ~ #skills label[for="skills_tab_Frameworks"],
#skills_tab_Tools:checked ~ #skills label[for="skills_tab_Tools"] {
  border-bottom: 1px solid white;
  color: white;
}
#skills .content {
  position: relative;
  width: 100%;
  z-index: 3;
  height: 500px;
  overflow: hidden;
}

#skills .scroll_content {
  display: flex;
  height: 100%;
}

#skills .content .top_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-background), #12121200);
  display: none;
}
#skills .content .left_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, var(--color-background), #12121200);
  display: none;
}
#skills .content .bottom_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, var(--color-background), #12121200);
  display: none;
}
#skills .content .right_overlay {
  position: absolute;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to left, var(--color-background), #12121200);
  display: none;
}

#skills_input_1:checked ~ #skills .content {
  .left_overlay {
    display: block;
  }
  .right_overlay {
    display: block;
  }
}
#skills_input_2:checked ~ #skills .content {
  max-width: 1200px;
  margin: 0 auto;

  .bottom_overlay {
    display: block;
  }
  .top_overlay {
    display: block;
  }
}

#skills_input_1:checked ~ #skills .scroll_content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

#skills_input_2:checked ~ #skills .scroll_content {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

#skills .scroll_content::-webkit-scrollbar:horizontal {
  display: none;
}

/* 세로 스크롤바 커스텀 */
#skills .scroll_content::-webkit-scrollbar {
  width: 8px; /* 세로 스크롤바 얇게 */
}

/* 세로 스크롤바 트랙 (배경) 투명하게 */
#skills .scroll_content::-webkit-scrollbar-track {
  background: transparent;
}

/* 세로 스크롤바 핸들 (움직이는 부분) */
#skills .scroll_content::-webkit-scrollbar-thumb {
  background-color: var(--color-input-background);
  border-radius: 0px;
}

/* 세로 스크롤바 핸들 hover */
#skills .scroll_content::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-input-background);
}

#skills .prograssBar_box {
  position: relative;
  width: 100px;
  height: 70px;
}

#skills .prograssBar {
  width: 100%;
  margin-top: 10px;
  background-color: #3e3e3e;
  border-radius: 100px;
  overflow: hidden;
  height: 13px;
}

#skills .prograssBar_skills {
  transition: 0.5s ease;
  background-color: var(--color-accent);
  border-radius: 100px;
  height: 100%;
  transition: 0.4s ease;
  width: 0%;
}

#skills .prograssBar_skills_message {
  padding: 5px 10px;
  font-size: 16px;
  position: absolute;
  top: 25px;
  left: 0%;
  transform: translateX(-50%);
  background-color: #3e3e3e;
  border-radius: 5px;
  transition: 0.4s ease;
}
#skills_input_1:checked ~ #skills {
  height: 80vh;
}

#skills_input_1:checked ~ #skills .item {
  width: 80vw;
  max-width: 330px;
  height: 180px;
  background-color: #1e1e1e;
  border-radius: 10px;
  flex: 0 0 auto;
  scroll-snap-align: center;

  .info_box {
    padding-top: 20px;
    display: flex;
    gap: 10px;
    margin-left: 10px;

    svg {
      width: 70px;
      height: 70px;
    }

    .names {
      display: flex;
      flex-direction: column;
      gap: 2px;
      justify-content: center;

      h2 {
        font-size: 24px;
      }

      p {
        font-size: 13px;
        color: var(--color-text-subtle);
      }
    }
  }

  .prograssBar_box {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
  }
}

#skills_input_2:checked ~ #skills .item {
  margin: 0 auto;
  max-width: 1200px;
  width: 95%;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
  padding: 10px 10px;
  border-radius: 10px;
  flex: 0 0 auto;

  &:hover {
    background-color: rgba(255, 255, 255, 0.078);
  }

  .info_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    gap: 5px;

    svg {
      width: 40px;
      height: 40px;
    }

    .names {
      display: flex;
      flex-direction: column;
      gap: 2px;
      justify-content: center;

      h2 {
        font-size: 14px;
      }

      p {
        display: none;
      }
    }
  }

  .prograssBar_box {
    flex: 1;
    transform: translateY(20px);
  }
}

#history {
  height: 500vh;
  width: 100%;
  position: relative;
  padding-top: 300px;

  .container-cc {
    position: sticky;
    width: 100% !important;
    height: 300px;
    top: 50%;
    transform: translateY(-50%);
    overflow-x: hidden;
    padding-top: 50px;
  }

  .dateTime {
    position: absolute;
    right: 30px;
    top: 0;
  }

  .content {
    position: absolute;
    width: 3250px;
    height: calc(100% - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0%;
    transform: translateX(50%);

    .line {
      margin-bottom: -90px;
      position: relative;
      width: 100%;
      background-color: white;
      height: 3px;

      .circle {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        height: 15px;
        background-color: white;
        border-radius: 50%;
      }

      .circle2 {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        height: 15px;
        background-color: white;
        border-radius: 50%;
      }
    }
  }
  .item {
    position: absolute;
    width: 200px;
    top: 0;
    transform: translateX(-50%);
    

    p {
      font-size: 12px;
      color: var(--color-text-subtle);
    }

    h3 {
      height: 88px;
      font-size: 23px;
      color: var(--color-text);
      margin: 0px;
      word-break: keep-all;
    }
    .c_line {
      width: 1px;
      background-color: var(--color-text);
      margin: 0 auto;
      transition: 0.4s ease;
    }
  }
    .bottom_box {
      width: 100%;
      height: 50px;
      position: absolute;
      bottom: 0;
      left: 0;
      

      .rail {
        height: 100%;
        width: 100%;
        position: relative;

        .rail_item {
          position: absolute;
          display: flex;
          align-items: center;
          top: 0;
          padding: 10px;
          border-radius: 8px;
          color: var(--color-text);
          display: flex;
          gap: 8px;
          background-color: var(--color-sub-background);
          width: max-content;
        }
      }
    }
}

.scrollHis {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scrollHis.scrollHis-visible {
  opacity: 1;
  transform: translateY(0);
}

.c_line {
  height: 0;
  transition: height 0.6s ease-out;
}

.c_line.c_line-visible {
  height: 60px;
}


@media (max-width: 768) {
  #history {
    .content {
      .item {
        h3 {
          font-size: 20px;
        }
      }
    }
  }
}

#about {
  position: relative;
  width: 100%;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;

  .container {
    display: flex;
    justify-content: space-between;
  }

  .leftContent {
    width: 60%;

    h1 {
      font-size: 48px;
    }
    p {
      font-size: 20px;
      color: var(--color-text-subtle);
    }

    .link-card {
      margin-top: 30px;
    }
  }

  .rightContent {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    img {
      width: 90%;
    }
  }
}


@media (max-width: 768px) {
  #about {
    display: flex;
    justify-content: center;

    .leftContent {
      width: 100%;
    }

    .rightContent {
      position: absolute;
      top: 0;
      right: 10px;
      img {
        width: 100px;
      }
    }
    
  }
}


#lastSec {
  width: 100%;
  position: relative;
  padding-top: 100px;

}

#endMessage {
  background: linear-gradient(
    45deg,
    #8a2be2,
    #ff00ff,
    #ff6347,
    #00ff00,
    #00bfff,
    #ff1493,
    #9400d3,
    #ff7f50,
    #ffff00,
    #ff4500,
    #9932cc,
    #adff2f,
    #dda0dd,
    #ff6347,
    #8a2be2,
    #ff00ff,
    #ff6347,
    #00ff00,
    #00bfff,
    #ff1493,
    #9400d3,
    #ff7f50,
    #ffff00,
    #ff4500,
    #9932cc,
    #adff2f,
    #dda0dd,
    #ff6347,
    #8a2be2
  ); /* 다양한 색상 추가 */
  width: 100%;
  background-size: 1200% 1200%; /* 배경 크기를 크게 설정하여 색상이 더 잘 흐르도록 */
  -webkit-background-clip: text; /* 텍스트에 배경을 클리핑 */
  color: transparent; /* 텍스트 자체 색상은 투명하게 설정 */
  display: inline-block;
  animation: rainbowFlow 10s linear infinite; /* 색상 흐름 애니메이션 속도 느리게 설정 */
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}
@keyframes rainbowFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
