@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/variable/woff2/SUIT-Variable.css");
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;500;700;800;900&display=swap");
* {
  font-family: "Archivo", "SUIT Variable";
}

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

/* scrollbar 숨기기 */
body {
  color: var(--black);
  overflow: scroll;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
  width: 0 !important;
}

body.dark {
  background-color: #111;
}
body.dark #dark-btn i {
  color: #fff;
}
body.dark #dark-btn i:hover {
  color: var(--orange);
}
body.dark .menu-cont:hover {
  color: #555;
}
body.dark .menu-cont li:hover {
  color: #fff;
}

/* 기본 스타일 */
.ir {
  display: block;
  overflow: hidden;
  position: absolute;
  text-indent: -9999px;
  line-height: 0;
  font-size: 1px;
  color: transparent;
}

/* header */
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px 0;
  box-sizing: border-box;
}
header h1 {
  cursor: pointer;
  width: 240px;
  font-family: "Archivo";
  font-size: 45px;
  font-weight: 900;
  line-height: 34px;
  letter-spacing: -2px;
}
header h1 .hover {
  display: none;
}
header h1:hover .show {
  display: none;
}
header h1:hover .hover {
  display: inline;
  color: var(--orange);
}
header .menu-cont {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  font-family: "Archivo";
  font-weight: 500;
  letter-spacing: -0.5px;
}
header .menu-cont:hover {
  color: #afafaf;
}
header .menu-cont #dark-btn {
  width: 30px;
  color: #000;
}
header .menu-cont #dark-btn:hover {
  color: var(--orange);
}
header .menu-cont #dark-btn i {
  cursor: pointer;
  transform: rotate(45deg);
}
header .menu-cont li {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 9px;
}
header .menu-cont li a {
  cursor: pointer;
}
header .menu-cont li:hover {
  position: relative;
  color: #000;
  font-weight: 800;
}
header .menu-cont .menu-title:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(4px, -50%);
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #ff5303;
}

/* main */
main {
  padding: 15px 0;
  margin-bottom: 80px;
  box-sizing: border-box;
}

header,
main {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}

@media screen and (max-width: 900px) {
  header,
  main {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}/*# sourceMappingURL=style.css.map */