/* 폰트 설정 */
@font-face {
  font-family: "BookkMyungjo-Bd";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/BookkMyungjo-Bd.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard-Regular";
  src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
}

/* 기본 스타일 */
body,
html {
  font-family: "Pretendard-Regular", "BookkMyungjo-Bd";
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background-color: #ffffff00;
  padding: 10px 0;
  z-index: 1000;
}

header nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav ul li {
  margin: 0 15px;
}

header nav ul li a {
  text-decoration: none;
  color: rgb(25, 25, 25);
  font-family: "Pretendard-Regular";
}

/* 배경을 담당하는 컨테이너 */
.background-container {
  z-index: -1000;
  width: 100%;

  height: 100%;
  background-size: cover;
  background-position: center;
}
