.poster-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0px 50px 0px 50px;
        padding-left: 3%;
    }
 
    .image-container {
        width: 13%;
        margin: 40px;
        text-align: center;
        align-self: flex-end;
        border: 1px solid #23527c;
        border-radius: 5px;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    }


    .image-container img {
        width: 150px;
        height: 180px;
        cursor: pointer;
    }

    .image-title {
        margin-top: 5px;
        font-size: 16px;
        word-wrap: break-word;
        font-weight: bold;
        border-top: 1px solid #808080;
        margin: 2px;
    }

    #fullpage {
        display: none;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat no-repeat;
        background-position: center center;
        background-color: black;
        justify-content: space-between; /* Add this line */
        align-items: center; /* Add this line */
        color: white;
        font-size: 2em;
        cursor: pointer;
    }

    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.5);
        text-align: center;
        line-height: 50px;
        font-weight: bold;
        user-select: none;
        cursor: pointer;
        font-size: 50px;
    }

    .left {
        left: 10px;
    }

    .right {
        right: 10px;
    }

    .exit {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 2em;
        cursor: pointer;
    }

.zoom-controls {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
 }

.zoom-icon {
    margin: 0 10px;
    cursor: pointer;
    color: #808080;
    font-size: 36px;
}

.text-banner {
  background-color: #1e80cd;
}

