/* Ensure the body and html take up the full screen */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;   /* Stack elements vertically */
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Center the image and make it responsive */
img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;       /* Keep aspect ratio */
}

/* Style for the caption text */
.caption {
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}
