/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}
.image-container, .image-container-next {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-out;
}

.image-container-next {
    opacity: 0;
}

.nav-button {
    position: absolute;
    bottom: 10px;
    font-size: 48px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 48px 0 0 48px;
    padding-left: 16px;
}
.more {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #dee2e6;
    font-size: 20px;

}
#prevButton {
    left: 10px;
}

#nextButton {
    right: 10px;
}

.vertical-text {
    position: absolute;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    left: 0;
    top: 0;
    height: 100%;
    font-size: 2em;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-align: center;
    z-index: 5;
    transform: rotate(180deg);
    text-shadow: 0 0 25px rgba(255,255,255);
}