body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212;
}

.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

img {
    max-width: 600px;
    max-height: 400px;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out;
}

.nav-button {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
.nav-button:hover {
    color: #ffcc00;
}