@charset "UTF-8";
.header-wrap {
  position: fixed;
  z-index: 1;
  width: 100%;
  padding: 1rem;
  color: white;
  mix-blend-mode: difference;
  user-select: none;
}
.header-wrap > .header-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-wrap > .header-desktop > .header-logo {
  font-size: 3rem;
}
.header-wrap > .header-desktop > nav > ul {
  display: flex;
  gap: 3rem;
}
.header-wrap > .header-desktop > nav > ul > li > a {
  font-size: 1.2rem;
}
.header-wrap > .header-desktop > ul > li:last-child > p {
  text-align: right;
}
.header-wrap > .header-mobile-menuOpenBtn, .header-wrap > .header-mobile {
  display: none;
}

@media (max-width: 917px) {
  .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-wrap.open > .header-desktop, .header-wrap.open > .header-mobile-menuOpenBtn {
    opacity: 0;
    visibility: hidden;
  }
  .header-wrap.open > .header-mobile {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s;
  }
  .header-wrap.close > .header-desktop, .header-wrap.close > .header-mobile-menuOpenBtn {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s;
  }
  .header-wrap.close > .header-mobile {
    opacity: 0;
    visibility: hidden;
  }
  .header-wrap > .header-desktop, .header-wrap > .header-mobile {
    transition: opacity 0.5s, visibility 0.5s;
  }
  .header-wrap > .header-mobile-menuOpenBtn {
    transition: opacity 0.5s, visibility 0.5s;
  }
  .header-wrap > .header-mobile-menuOpenBtn:hover {
    cursor: pointer;
  }
  .header-wrap > .header-mobile > button:hover {
    cursor: pointer;
  }
  .header-wrap > .header-desktop > nav,
  .header-wrap > .header-desktop > ul {
    display: none;
  }
  .header-wrap > .header-mobile-menuOpenBtn {
    display: block;
    background: none;
    border: none;
  }
  .header-wrap > .header-mobile {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    height: 102px;
  }
  .header-wrap > .header-mobile > button {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
  }
  .header-wrap > .header-mobile > nav > ul {
    display: flex;
    gap: 1rem;
  }
}
@media (max-width: 470px) {
  .header-wrap > .header-mobile {
    align-items: unset;
    padding-inline: 0.5rem;
  }
}
@media (max-width: 400px) {
  .header-wrap > .header-desktop > .header-logo {
    font-size: 1.5rem;
  }
  .header-wrap > .header-mobile-menuOpenBtn {
    width: 2rem;
    height: 2rem;
  }
  .header-wrap > .header-mobile-menuOpenBtn > img {
    width: inherit;
    height: inherit;
  }
  .header-wrap > .header-mobile {
    justify-content: center;
    height: 67px;
  }
  .header-wrap > .header-mobile > button {
    width: 2rem;
    height: 2rem;
  }
  .header-wrap > .header-mobile > button > img {
    width: inherit;
    height: inherit;
  }
  .header-wrap > .header-mobile > nav > ul {
    position: absolute;
    top: 1rem;
    flex-direction: column;
    gap: 0.3vw;
  }
  .header-wrap > .header-mobile > nav > ul > li > a {
    font-size: clamp(0.7rem, 4vw, 1rem);
  }
  .header-wrap > .header-mobile > ul {
    display: none;
  }
}
.cursor-wrap {
  --opacity:0;
  --translateX:0;
  --translateY:0;
  --content:"";
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  mix-blend-mode: difference;
  z-index: 10;
  opacity: var(--opacity);
  transform: translate3d(calc(var(--translateX) + 60px), calc(var(--translateY) + 60px), 0);
  transition: opacity 0.2s;
  transition-delay: 0.2s;
}
.cursor-wrap::before {
  content: var(--content);
  color: inherit;
}

.intro-wrap {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  width: 100%;
  height: 100dvh;
  z-index: 100;
  overflow: hidden;
  cursor: none;
}
.intro-wrap > div {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 30px;
  overflow: hidden;
  background: black;
}
.intro-wrap > div:first-child {
  z-index: 1;
}
.intro-wrap > div:last-child {
  z-index: -1;
}
.intro-wrap > div > p {
  position: absolute;
  color: white;
  font-size: 1.3rem;
  height: 30px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100dvh;
  background: black;
  overflow-x: hidden;
  user-select: none;
}
.hero-wrap > p {
  font-size: clamp(1rem, 11.3vw, 14rem);
  font-weight: bold;
  cursor: default;
}
.hero-wrap > p:last-child {
  text-align: right;
}

@font-face {
  font-family: "Cafe24Ssurround";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/Cafe24Ssurround.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.project-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  --opacity:0;
  opacity: var(--opacity);
  background: white;
  --z-index:-1;
  z-index: var(--z-index);
  transition: opacity 0.3s;
}

.projects-wrap {
  user-select: none;
}
.projects-wrap.list {
  background: white;
}
.projects-wrap.list > .projects-sticky {
  padding-inline: 2rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 5.5rem;
  z-index: 0;
  height: max-content;
}
.projects-wrap.list > .projects-sticky > div {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.projects-wrap.list > .projects-sticky > div > a {
  align-items: unset;
  height: max-content;
}
.projects-wrap.list > .projects-sticky > ul {
  position: relative;
  border: 1px solid black;
  height: 400px;
}
.projects-wrap.list > .projects-sticky > ul:last-child {
  box-shadow: none;
}
.projects-wrap.list > .projects-sticky > ul > li {
  height: 100%;
}
.projects-wrap.list > .projects-sticky > ul > li:first-child > video {
  position: unset;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(2) {
  z-index: 1;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > p:first-child {
  font-size: 2.5rem;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > p:nth-child(2) {
  font-size: 1.1rem;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) > li > a {
  font-size: 0.9rem;
  padding-inline: 0.8rem;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li {
  font-size: 0.85rem;
  padding-inline: 1.2rem;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li::after {
  right: -0.2rem;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(3) {
  align-items: flex-start;
  z-index: 0;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(3) > p {
  font-size: 1.5rem;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(3) > p:first-child {
  padding-left: 1rem;
}
.projects-wrap.list > .projects-sticky > ul > li:nth-child(3) > p:last-child {
  padding-right: 1rem;
  display: none;
}
.projects-wrap .projects-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
}
.projects-wrap .projects-sticky > div {
  display: flex;
  justify-content: right;
  padding-inline: 2rem;
}
.projects-wrap .projects-sticky > div > a {
  position: relative;
  top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: white;
  padding: 0.3rem;
  border-radius: 10px;
  z-index: 2;
}
.projects-wrap .projects-sticky > div > a:hover {
  cursor: pointer;
}
.projects-wrap .projects-sticky > div > a > svg {
  width: 2.5rem;
  height: 2.5rem;
  --rotate:0;
  transform: rotate(var(--rotate));
  transition: transform 0.2s;
}
.projects-wrap .projects-sticky > ul {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: black;
  color: white;
  overflow: hidden;
  transition: opacity 0.5s;
}
.projects-wrap .projects-sticky > ul:last-child {
  box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.3);
}
.projects-wrap .projects-sticky > ul#Naver {
  color: black;
}
.projects-wrap .projects-sticky > ul#Naver > li:nth-child(2) > ul:nth-child(3) > li > a {
  border-color: black;
}
.projects-wrap .projects-sticky > ul > li {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100dvh;
}
.projects-wrap .projects-sticky > ul > li:first-child > video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > p:first-child {
  font-family: "Cafe24Ssurround";
  font-size: 3rem;
  line-height: 0.5;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > p:nth-child(2) {
  font-size: 1.3rem;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul {
  display: flex;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) {
  gap: 2rem;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) > li {
  display: flex;
  gap: 2rem;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) > li > a {
  border: 2px solid white;
  border-radius: 20px;
  padding-inline: 1rem;
  line-height: 2.5;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) > li > a:hover {
  border-color: black;
  background: black;
  color: white;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li {
  position: relative;
  display: flex;
  padding-inline: 2rem;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li::after {
  content: "/";
  position: absolute;
  right: 0%;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li:last-child::after {
  display: none;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li > p {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.projects-wrap .projects-sticky > ul > li:nth-child(2) > ul:nth-child(5) {
  padding-top: 1rem;
  gap: 1rem;
}
.projects-wrap .projects-sticky > ul > li:nth-child(3) {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: -1;
}
.projects-wrap .projects-sticky > ul > li:nth-child(3) > p {
  font-size: 1.8rem;
  padding-bottom: 1rem;
}
.projects-wrap .projects-sticky > ul > li:nth-child(3) > p:first-child {
  padding-left: 2rem;
}
.projects-wrap .projects-sticky > ul > li:nth-child(3) > p:last-child {
  padding-right: 2rem;
}

@media (max-width: 1200px) {
  .projects-wrap.list > .projects-sticky {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > p:first-child {
    font-size: 2rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > p:nth-child(2) {
    font-size: 1rem;
  }
}
@media (max-width: 800px) {
  .projects-wrap.list > .projects-sticky {
    grid-template-columns: repeat(1, 1fr);
  }
  .projects-wrap.list > .projects-sticky > ul {
    height: 300px;
  }
}
@media (max-width: 470px) {
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > p:first-child {
    font-size: 1.5rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > p:nth-child(2) {
    font-size: 0.9rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) {
    gap: 1rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) > li > a {
    font-size: 0.7rem;
    padding-inline: 0.6rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li {
    padding-inline: 1rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li > p {
    font-size: 0.7rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(5) {
    gap: 0.7rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(5) > li > span {
    font-size: 0.7rem;
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > p:first-child {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > p:nth-child(2) {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li {
    padding-inline: 1rem;
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li::after {
    right: -5%;
  }
  .projects-wrap > .projects-sticky > ul > li:last-child > p {
    font-size: 1.2rem;
  }
}
@media (max-width: 330px) {
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) {
    flex-direction: column;
    gap: 0.5rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.5rem;
  }
  .projects-wrap.list > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(5) {
    padding-top: 1rem;
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) {
    gap: 0.5rem;
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(3) > li > a {
    font-size: max(0.6rem, 5vw);
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li {
    padding-inline: 0.7rem;
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(4) > li > p {
    font-size: 0.8rem;
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(5) {
    padding-top: 0.3rem;
  }
  .projects-wrap > .projects-sticky > ul > li:nth-child(2) > ul:nth-child(5) > li > span {
    font-size: 0.8rem;
  }
}
.about-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  min-height: 400px;
  user-select: none;
}
.about-wrap > div {
  width: 80%;
  height: -moz-max-content;
  height: max-content;
  color: rgb(100, 100, 100);
}
.about-wrap > div > h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  white-space: nowrap;
}
.about-wrap > div > div {
  height: 3px;
  background: gray;
}
.about-wrap > div > p {
  padding: 2rem;
  line-height: 2;
  font-size: clamp(0.8rem, 1.4vw, 1.3rem);
  word-break: keep-all;
}

@media (max-width: 660px) {
  .about-wrap > div > p {
    text-align: center;
  }
}
@media (max-width: 400px) {
  .about-wrap > div > p {
    text-wrap: pretty;
    padding-inline: unset;
  }
}
.skills-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  height: 100dvh;
  min-height: 800px;
}
.skills-wrap > .skills-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  row-gap: 5rem;
  width: 94%;
}
.skills-wrap > .skills-layout > fieldset {
  display: flex;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.skills-wrap > .skills-layout > fieldset:nth-child(1) {
  box-shadow: 0px 5px 5px 5px rgba(227, 79, 38, 0.1);
}
.skills-wrap > .skills-layout > fieldset:nth-child(1),
.skills-wrap > .skills-layout > fieldset:nth-child(1) > legend {
  border: 3px solid rgb(227, 79, 38);
}
.skills-wrap > .skills-layout > fieldset:nth-child(1) > legend {
  box-shadow: -7px 10px 2px 4px rgba(227, 79, 38, 0.2);
}
.skills-wrap > .skills-layout > fieldset:nth-child(2) {
  box-shadow: 0px 5px 5px 5px rgba(21, 114, 182, 0.1);
}
.skills-wrap > .skills-layout > fieldset:nth-child(2),
.skills-wrap > .skills-layout > fieldset:nth-child(2) > legend {
  border: 3px solid rgb(21, 114, 182);
}
.skills-wrap > .skills-layout > fieldset:nth-child(2) > legend {
  box-shadow: -5px 10px 2px 4px rgba(21, 114, 182, 0.2);
}
.skills-wrap > .skills-layout > fieldset:nth-child(3) {
  box-shadow: 0px 5px 5px 5px rgba(247, 223, 30, 0.1);
}
.skills-wrap > .skills-layout > fieldset:nth-child(3),
.skills-wrap > .skills-layout > fieldset:nth-child(3) > legend {
  border: 3px solid rgb(247, 223, 30);
}
.skills-wrap > .skills-layout > fieldset:nth-child(3) > legend {
  box-shadow: -5px 10px 2px 4px rgba(247, 223, 30, 0.2);
}
.skills-wrap > .skills-layout > fieldset:nth-child(4) {
  box-shadow: 0px 5px 5px 5px rgba(97, 218, 251, 0.1);
}
.skills-wrap > .skills-layout > fieldset:nth-child(4),
.skills-wrap > .skills-layout > fieldset:nth-child(4) > legend {
  border: 3px solid rgb(97, 218, 251);
}
.skills-wrap > .skills-layout > fieldset:nth-child(4) > legend {
  box-shadow: -5px 10px 2px 4px rgba(97, 218, 251, 0.2);
}
.skills-wrap > .skills-layout > fieldset > legend {
  font-size: 2rem;
  font-weight: bold;
  color: black;
  border: 3px solid black;
  margin-left: 2rem;
  padding-inline: 1rem;
  padding-block: 0.3rem;
  transform: rotateZ(-10deg);
}
.skills-wrap > .skills-layout > fieldset > p {
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 3rem;
  width: 100%;
  word-break: keep-all;
}

@media (max-width: 1250px) {
  .skills-wrap {
    padding-top: 5rem;
    height: max-content;
    min-height: unset;
  }
  .skills-wrap > .skills-layout {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 917px) {
  .skills-wrap > .skills-layout > fieldset > legend {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }
  .skills-wrap > .skills-layout > fieldset > p {
    font-size: clamp(0.8rem, 2vw, 1.1rem);
  }
}
@media (max-width: 640px) {
  .skills-wrap > .skills-layout {
    row-gap: 3rem;
  }
}
.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  min-height: 820px;
  gap: 10rem;
  color: black;
  background: white;
  overflow-x: hidden;
}
.contact-wrap > h2 {
  font-size: 3rem;
}
.contact-wrap > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  height: max-content;
  gap: 50px;
}
.contact-wrap > div > div {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  word-break: keep-all;
}
.contact-wrap > div > div > p {
  font-size: 1.8rem;
}
.contact-wrap > div > div > nav > ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-wrap > div > div > nav > ul > li:first-child {
  text-indent: 4px;
}
.contact-wrap > div > form {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 2px solid black;
  border-radius: 10px;
  padding: 1rem;
  height: 100%;
  min-height: 451.5px;
  gap: 1.5rem;
}
.contact-wrap > div > form > div > input,
.contact-wrap > div > form > textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-wrap > div > form > div {
  display: flex;
  flex-direction: column;
  height: 20%;
  gap: 0.8rem;
}
.contact-wrap > div > form > div > input {
  flex: 1;
}
.contact-wrap > div > form > textarea {
  flex: 1;
  resize: none;
}
.contact-wrap > div > form > input {
  padding: 12px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 1250px) {
  .contact-wrap > div {
    width: 80%;
  }
}
@media (max-width: 917px) {
  .contact-wrap {
    gap: 2rem;
    justify-content: flex-end;
  }
  .contact-wrap > div {
    flex-direction: column;
    align-items: unset;
    width: unset;
    height: max-content;
  }
  .contact-wrap > div > div {
    flex: 0;
    text-align: center;
  }
  .contact-wrap > div > div > p {
    font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  }
}
@media (max-width: 400px) {
  .contact-wrap {
    min-width: 216px;
  }
  .contact-wrap > div {
    width: 90%;
  }
}
@media (max-width: 330px) {
  .contact-wrap > h2 {
    font-size: max(2rem, 14vw);
  }
  .contact-wrap > div > div > p {
    font-size: max(0.9rem, 6vw);
  }
  .contact-wrap > div > div > nav > ul > li > a {
    font-size: 0.9rem;
  }
}
.footer-wrap {
  text-align: right;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
  background: white;
}

@media (max-width: 917px) {
  .footer-wrap {
    padding: 0;
    font-size: 0.8rem;
    padding-top: 1rem;
  }
}
@media (max-width: 330px) {
  .footer-wrap {
    font-size: 0.6rem;
  }
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

.scroll:hover ~ .cursor-wrap {
  width: 5rem;
  height: 5rem;
}

@media (max-width: 230px) {
  html {
    overflow: hidden;
  }
  body::before {
    content: "죄송합니다.\a현재 디바이스에서는\a화면을 지원하지 않습니다.";
    position: fixed;
    top: 0;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    color: white;
    z-index: 9999;
    white-space: pre-line;
  }
}

/*# sourceMappingURL=style.css.map */
