/* 전체 스타일 */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center; /* 가운데 정렬 */
}

/* 헤더 스타일 */
header {
  background: linear-gradient(to right, #007bff, #00b4d8);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 50%; /* 폭을 50%로 설정 */
  margin: 0 auto; /* 가운데 정렬 */
}

header .logo img {
  height: 50px;
}

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

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #ffeb3b; /* 메뉴 항목 hover 효과 */
}

/* 제목 스타일 */
h1 {
  text-align: center;
  font-size: 32px;
  color: #333;
  padding: 20px 0;
  max-width: 50%; /* 제목 영역 폭 50%로 설정 */
  margin: 0 auto; /* 가운데 정렬 */
}

/* 목록 스타일 */
ol.alternating-colors {
  padding-left: 50px;
  max-width: 50%; /* 목록 영역 폭 50%로 설정 */
  margin: 0 auto; /* 가운데 정렬 */
}

li {
  color: #4f4f4f;
  padding-left: 16px;
  margin-top: 24px;
  position: relative;
  font-size: 16px;
  line-height: 20px;
}

strong {
  color: #292929;
}

ol.alternating-colors li:nth-child(odd):before {
  content: "";
  display: block;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 2px solid #0bad02;
  position: absolute;
  top: -12px;
  left: -46px;
}

ol.alternating-colors li:nth-child(even):before {
  content: "";
  display: block;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 2px solid #2378d5;
  position: absolute;
  top: -12px;
  left: -46px;
}
