body {
    font-family: sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    background-color: #2a2a2a;
    border-radius: 5px;
    overflow: hidden;
}

.prompt {
    padding: 15px;
    font-size: 1.1em;
    background-color: #333;
}

.gallery-item img {
    width: 100%;
    height: auto;
}