@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap");

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

body {
  font-family: "Noto Sans KR", sans-serif;
}

a {
  text-decoration: none;
  display: inline-block;
  font-size: 25px;
  color: inherit;
}

.container {
  width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

header {
  position: fixed;
  z-index: 2;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: inherit;
  height: 118px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(5px);
  display: flex;
  transition: top 0.2s ease-in;
}

header > a {
  flex: 1;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

section {
  position: relative;
  width: inherit;
}

@media screen and (max-width: 768px) {
  .container {
    width: 100dvw;
  }

  header {
    height: 60px;
  }

  header > a {
    font-size: 14px;
  }
}
