body {
    font-family: "Playfair Display", serif;
    margin: 0;
    background: #fffaf0;
    color: #000;
    text-align: left;
}

header {
    background: #fffaf0;
    color: #000;
    padding: 40px 40px;
    border-bottom: 1px solid #ddd;
    margin-left: 20px; /* pushes the whole header block right */
}

}

header h1 {
    margin: 0;
    font-size: 2em;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

footer {
    background: #fffaf0;
    color: #000;
    padding: 10px;
}
