body {
    margin: 0;
    padding: 0;
    background-color:#231f20;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    width: 100%;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: stretch;*/
    /*margin: auto;*/
    /*border-radius: 16px;*/
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

.image-scroll {
    /*width: 100%;*/
    box-sizing: border-box;
    height: 100vh;
    padding: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    /* Show scrollbar */
    scrollbar-width: 20px;
    scrollbar-color: #472f33 #472f3399;
    scrollbar-arrow-color: #ffffff00;
}

.image-scroll::-webkit-scrollbar {
    height: 20px;
}

.image-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.image-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.image-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.image-scroll img {
    height: 100%;
    /*height: calc(100vh - 120px);*/
    width: auto;
    display: block;
    border-radius: 16px;
    /*border: 2px solid #472f33;*/
    /* Prevent image from being dragged */
    user-select: none;
    -webkit-user-drag: none;
}

h1 {
    color: #f0c0b6;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Mobile optimization */
@media (max-width: 768px) {
}
