/* 전체 기본 세팅 */
body {
  font-family: 'Helvetica', sans-serif;
  margin: 0;
  background-color: #f0f8ff;
}

/* 헤더 스타일 */
header{
  background: url('./image.jpg') no-repeat center / cover;
}
  .img-container {
  text-align: center;
  padding: 60px 20px; /* 부모에 패딩 */
}
img {
  display: inline-block;  /* 기본 값인 inline 상태 유지 */
    width: 1100px;
  height: 300px;
  object-fit: cover;
}


header h1 {
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 표 스타일 */
table {
  width: 80%;
  margin: 0px auto;
  border-collapse: collapse;
  background-color: #e6f7ff;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* 표 헤더 스타일 */
th {
  background-color: #b3e0ff;
  padding: 20px;
  font-size: 1.5em;
  text-align: left;
}

/* 표 본문 셀 */
td {
  padding: 8px;
  border-top: 2px solid #ccc;
}

/* 링크 스타일 */
td a {
  text-decoration: none;
  color: #0066cc;
}
td a:hover {
  text-decoration: underline;
}