#comic-strip-container {
    position: fixed;
    top: 60px;
    left: 0;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    height: 700px;
    padding: 0px;
    margin: 0px;
    font-size: 0;
    line-height: 0;
    background-color: white;
    display: none; /* hide by default */
    z-index: 15;
}

#comic-strip-container::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    top: 759px;
    height: 100px; /* Adjust the height as needed */
    background: linear-gradient(white, transparent);
    pointer-events: none; /* Ensures that clicks go through the overlay */
}

/* Only show horizontal strip on special cases */
@media screen and (orientation: portrait) and (min-height: 1600px) {
    #comic-strip-container {
        display: block;
    }
}


.comic-strip-combowrap img {
    height: 100%;
    display: inline-block;
    vertical-align: bottom; /* This can help align images without gaps */
    padding: 0;
    margin-left: 100px;
}

.comic-strip-combowrap {
    /* wrapper for a strip with blings */
    height: 100%;
    position: relative;
    display: inline-block;
    vertical-aligh: bottom;
    padding: 0;
    z-index: 15;
    margin-left: 100px;
}

#full-comic-container {
    margin-top: 80vh; /* Height of the viewport, adjust as necessary */
    margin-bottom: 100vh; /* Empty space after images */
    width: 100%;
    text-align: center; /* Center the images if they are smaller than the viewport width */
    z-index: 1;
    background-color: white;
}

#full-comic-container::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(25vh, 200px); /* Adjust the height as needed */
    background: linear-gradient(transparent, gainsboro, gainsboro);
    pointer-events: none; /* Ensures that clicks go through the overlay */
}

.full-comic-combowrap {
    width: calc(100vw - 80px);
    max-width: min(calc(100vw - 80px), 800px);
    max-height: 320px;
    height: auto;
    padding-bottom: 80px; 
    display: inline-block;
    position: relative;
    z-index: 0;
    margin: 0 auto; /* Center the image horizontally */
}

.full-comic-combowrap img {
    width: calc(100vw - 80px);
    max-width: min(calc(100vw - 80px), 800px);
    max-height: 320px;
    height: auto;
    display: block;
    z-index: 10;
    margin: 0 auto; /* Center the image horizontally */
    background-attachment: fixed;
    overflow: hidden;
}







@font-face {
    font-family: 'AThemeForMurder';
    src: url('a_theme_for_murder-webfont.woff2') format('woff2'),
         url('a_theme_for_murder-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.scrolling-text {
    font-family: 'AThemeForMurder', sans-serif; /* Fallback to sans-serif */
    position: fixed;
    transform-origin: center;
    top: 400px;
    left: 0%;
    white-space: nowrap;
    pointer-events: none;
    color: black;
    font-size: 24px;
}


#content-warning-overlay {
    position: fixed;
    display: block;
    box-sizing: border-box;
    top: 60px;
    left: 0;
    padding: 30px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: sans-serif;
    font-size: 30px;
}
#content-warning-overlay button {
    padding: 20px;
    font-family: sans-serif;
    font-size: 40px;
}


#comic-strip-container, #full-comic-container {
    filter: blur(20px);
}


