@font-face {
  font-family: "BMHANNAPro";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_seven@1.0/BMHANNAPro.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}
html,
body,
p,
a,
div,
section,
article {
  padding: 0;
  margin: 0;
  line-height: 1.3;
}

/* 전체 페이지에 대한 기본 스타일 */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

/* 헤더 섹션 스타일 */
header {
  background-color: #17a2b8;
  color: #ffffff;
  padding: 40px 0 20px;
  text-align: center;
}

header h1 img {
  height: 130px;
}

#main {
  background: #fff;
}

/* 검색 영역 스타일 */
#search-area {
  width: 380px;
  margin:20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#search-area > div {
  width: 100%;
}

/* 입력 필드 스타일 */
#search-input {
  width: 300px;
  height: 48px;
  border: 2px solid #17a2b8;
  border-radius: 5px;
  padding: 0 10px;
}

/* 입력 필드에 포커스 되었을 때 */
#search-input:focus {
  outline: none;
  border-color: #138496;
  box-shadow: 0 0 5px rgba(23, 162, 184, 0.5);
}

/* 검색 버튼 스타일 */
button {
  height: 46px;
  border: none;
  background-color: #138496;
  color: #ffffff;
  padding: 0 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

/* 버튼 호버 효과 */
button:hover {
  background-color: #126875;
}

/* 검색 결과 스타일 */
.search_result {
  display: block; /* 또는 필요에 따라 inline-block 등으로 조정 */
  margin-top: 10px;
  color: #fff;
  padding-left: 5px;
  width:100%;
  text-align: left;
}


@media screen and (max-width: 768px) {
  #search-area {
    width: 300px;
    
  }
  #search-input {
    width: 220px;
  }
}