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

img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

body {
    background-color: #ffffff; /* Assuming white background */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 100vh;
    width: max-content;
    margin: 0 auto;
}

.image-sequence {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

.image-sequence img {
    display: block;
    /* Keeps images at their exact, natural size */
    max-width: none;
}

.logo-top-right {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 150px; /* Decreased logo size */
}

.logo-top-left {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    width: 250px;
}

.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.sticky-bottom img {
    display: block;
}
