/* 전체 페이지 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}
.container {
  max-width: 960px;
  margin: auto;
  padding: 16px;
}

/* 헤더 스타일 */
.header {
  background-color: #333;
  color: #fff;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 24px;
  font-weight: bold;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  list-style: none;
  display: flex;
  column-gap: 1rem;
}

.header__menu-item {
  margin-right: 10px;
}

.header__menu-link {
  text-decoration: none;
  color: #fff;
  padding: 16px 0;
  display: inline-block;
}

/* 본문 스타일 */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

/* 아티클 스타일 */
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 20px;
  margin-bottom: 20px;
  width: 400px;
}

.card--dark {
  background-color: black;
  color: #ffffff;
}

/* 아티클 제목 스타일 */
.card__title {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* 아티클 내용 스타일 */
.card__content {
  margin: 16px 0;
  line-height: 1.4rem;
}

/* 아티클 메타 데이터 스타일 */
.card__meta {
  font-size: 14px;
}

/* 작성자 스타일 */
.card__author {
  margin-right: 10px;
}


/* 버튼 스타일 */
.button {
  display: inline-block;
  
  
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button--primary {
  background-color: #007bff;
  color: #fff;
}

.button--large {
  padding: 10px 20px;
  font-size: 16px;
}

/* 버튼 아이콘 스타일 */
.button__icon {
  margin-right: 5px;
}

/* 버튼 텍스트 스타일 */
.button__text {
  vertical-align: middle;
}

/* 버튼 호버 스타일 */
.button:hover {
  background-color: #0056b3;
}
