
body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 20px;
}
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.photo {
    width: 300px;
}
.photo img {
    width: 100%;
    border-radius: 8px;
}
.photo p {
    font-size: 0.95em;
    margin-top: 10px;
    color: #ccc;
}
