/* 전체 페이지 */
body {
  background-color: #edf3f8;
  color: #24364b;
  font-family: Arial, sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px;
}

/* 제목 */
h1 {
  color: #254f76;
  font-size: 42px;
  text-align: center;
}

h2 {
  color: #326b75;
  font-size: 28px;
  margin-top: 40px;
}

h3 {
  color: #254f76;
  font-size: 21px;
}

/* 본문 */
p {
  font-size: 17px;
  line-height: 1.6;
}

/* 링크 */
a {
  color: #8a3b63;
  text-decoration: underline;
}

a:hover {
  color: #b64e36;
}

/* 표 */
table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 16px;
  vertical-align: top;
  border-bottom: 1px solid #bdcddc;
}

.profile-photo {
  width: 400px;
  height: auto;
}

.activities-table img {
  width: 300px;
  height: auto;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 16px;
}

input[type="text"],
select,
textarea {
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #839bb2;
  border-radius: 6px;
}

textarea {
  width: 95%;
}

label {
  display: inline-block;
  margin: 6px 12px 6px 0;
}

button {
  background-color: #254f76;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  margin-top: 20px;
  cursor: pointer;
}

button:hover {
  background-color: #326b75;
}