body {
  margin: 0;
  padding: 0;
  background-color: white;
  background-size: 1000px;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

header {
  background-color: skyblue;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo a {
  text-decoration: none;
}

#logo h1 {
  margin: 0;
  color: rgb(7, 1, 91);
}

#menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
#menu a {
  text-decoration: none;
}

/* contents */
#contents {
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 20px skyblue;
  text-align: center;
}

/* 메인 제목 */
#contents h1 {
  color: navy;
  font-size: 35px;
  margin-bottom: 40px;
}

/* 팀원 개별 박스 */
.member {
  margin: 20px 0;
  padding: 20px;
  background-color: rgba(135, 207, 235, 0.3);
  border-radius: 15px;
  border: 2px solid skyblue;
}

/* 팀원 이름 */
.member h2 {
  font-size: 25px;
  color: navy;
  margin-bottom: 10px;
}

/* 텍스트 */
.member p {
  font-size: 16px;
  color: navy;
  margin: 8px 0;
}

/* 링크 스타일 */
.member a {
  color: rgb(254, 151, 169);
  text-decoration: none;
}

.member a:hover {
  text-decoration: underline;
  color: #ff3399;
}

/* 팀 프로젝트 소개 박스 */
.project {
  max-width: 700px;
  margin: 30px auto;
  padding: 25px;
  background-color: white;
  box-shadow: 0 10px 20px skyblue;
  border-radius: 20px;
  text-align: center;
}

/* 프로젝트 제목 */
.project h2 {
  font-size: 30px;
  color: navy;
  margin-bottom: 20px;
}

/* 프로젝트 내용 */
.project p {
  font-size: 16px;
  color: navy;
  margin: 10px 0;
}

.project a {
  color: rgb(254, 151, 169);
  text-decoration: none;
}

.project a:hover {
  text-decoration: underline;
  color: #ff3399;
}

/* 반응형 */
@media (max-width: 768px) {
  #contents,
  .project {
    padding: 20px;
  }

  .member h2,
  .project h2 {
    font-size: 22px;
  }

  .member p,
  .project p {
    font-size: 15px;
  }
}
