body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #ffeaed; /* 전체 배경색 통일 */
    color: #555;
    line-height: 1.7;
}

header, footer {
    background-color: #ffeaed; /* 헤더 및 푸터 배경색 통일 */
    color: #e91e63;
    padding: 3em 0;
}

header h1 {
    font-size: 3em;
    margin-bottom: 0.8em;
    font-weight: 600;
}

header p {
    font-size: 1.2em;
    margin-top: 1.5em;
}

/* 편지 스타일 */
#letter {
    padding: 3em;
    margin: 3em auto;
    max-width: 800px;
    background-color: #f0f0f0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

#letter h2 {
    color: #e91e63;
    margin-bottom: 1.5em;
    font-size: 2.2em;
}

.letter-section {
    margin-bottom: 2.5em;
    text-align: left;
}

.letter-section h3 {
    color: #e91e63;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.8em;
    margin-bottom: 1.5em;
    font-size: 1.4em;
}

.letter-section p {
    margin-bottom: 1.2em;
    font-size: 1.1em;
}

/* 버튼 스타일 */
.button {
    display: inline-block;
    background-color: #e91e63;
    color: white;
    padding: 1em 2em;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 3em;
    font-weight: 600;
    font-size: 1.1em;
}

footer {
    color: rgb(0, 0, 0);
    padding: 1.5em 0;
    margin-top: 3em;
    font-size: 0.9em;
}

/* 사진 갤러리 스타일 */
.photo-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3em;
}

.photo {
    width: 80%;
    margin-bottom: 2em;
    text-align: center;
}

.photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photo p {
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #777;
}

/* 반응형 스타일 */
@media (max-width: 600px) {
    header h1 {
        font-size: 2.5em;
    }

    header img {
        width: 180px;
        height: 180px;
    }
}