/* 基本重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* 头部样式 */
header {
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}

header h1 {
  color: #333;
}

/* 主要内容区 */
main {
  max-width: 960px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.tribute {
  position: relative;
  margin-bottom: 40px;
}

.person-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.caption {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.caption h2,
.caption p {
  color: #333;
}

/* 页脚样式 */
footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
  color: #666;
}