body {
    margin: 100px 0px;
    padding: 0;
    background-color: #f5e7d4;
    font-family: 'Times New Roman', serif;
    color: #5a4a3a;
}

.album {
    max-width: 80%; /* Уже, чтобы подчеркнуть колонку */
    margin: 20px auto;
    padding: 20px;
    background: url("tekstovoe-prostranstvo-koricnevoi-bumagi.jpg") center/cover;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #d4b483;
}

.album-cover {
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid #8b7355;
}

.album-cover h1 {
    font-size: 2.5em;
    font-style: italic;
    margin: 0;
    color: #5a4a3a;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.album-cover h2 {
    font-size: 1.5em;
    font-style: italic;
    margin: 20px;
    color: #5a4a3a;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.album-cover p {
    font-size: 1.2em;
    font-style: italic;
    text-align: justify;
    font-weight: bold;
    margin: 20px;
    color: #5a4a3a;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.caption {
    font-size: 1.2em;
    font-weight: bold;
    font-style: italic;
    margin-top: 8px;
    color: #5a4a3a;
}

.album-pages {
    padding: 20px 0;
}

.page {
    display: flex;
    flex-direction: column; /* Все фото в одну колонку */
    gap: 30px; /* Отступ между фото */
}

.photo {
    text-align: center;
}

.photo img {
    max-width: 90%;
    border: 8px solid white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    filter: sepia(30%);
    transition: transform 0.3s;
}

.photo img:hover {
    transform: scale(1.02);
    filter: sepia(10%);
}

.album-footer {
    text-align: center;
    padding: 10px;
    border-top: 2px solid #8b7355;
    font-size: 0.9em;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: rgba(139, 115, 85, 0.8);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    z-index: 100;
    transition: all 0.3s;
}

.back-button:hover {
    background: rgba(109, 95, 65, 0.9);
    transform: translateX(-3px);
}

.back-button::before {
    content: "←";
    margin-right: 5px;
}        
