* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    overflow-x: hidden;
}

.gallery {
    display: flex;
    flex-direction: column;
    width: 100vw;
    gap: 2rem;
}

.photo {
    width: 100%;
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .photo {
        min-height: 40vh;
    }
}
