body {
  font-family: "Noto Sans KR", sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #00c2b2;
}

.banner {
  background-color: #00c2b2;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.intro {
  text-align: center;
  padding: 40px 20px;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #00c2b2;
  font-weight: bold;
}

.card a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 15px;
  font-size: 14px;
}

/* style.css 파일에 추가 */
.military-video {
    width: 200px; /* 원하는 비디오 너비로 설정 (예시: 600px) */
    height: auto; /* 너비에 맞춰 높이 자동 조절 (비율 유지) */
    max-width: 100%; 
    /* 중앙 정렬을 위해 블록 요소로 설정  display: block; */
    margin: 20px auto; /* 중앙 정렬 및 위아래 여백 */
    border-radius: 5px;
}
