body{
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
}
.cinerama-container {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    justify-content: center;}

.cinerama-container .cinerama-header {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.cinerama-container .cinerama-banner {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
}

.cinerama-container .cinerama-banner img {
    @media (max-width:750px) {
        width: 100%;

    }

}

.cinerama-container .cinerama-content {
    text-align: center;
    margin-top: 20px;
    display: flex;
    width: 100%;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
}




.cinerama-container .cinerama-subscription {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 40px;
    margin: 40px 0;
    @media (max-width:750px) {
        flex-wrap: wrap;
        margin-top: 20px;

    }

}

.cinerama-container .cinerama-subscription strong {
    font-size: 32px;
    margin: 10px 0;
    color: #fefe4c;
    @media (max-width:750px) {
        font-size: 28px;
    }
}

.cinerama-container .cinerama-series-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}



.cinerama-container .cinerama-description p {
    font-size: 18px;
    text-align: center;
    margin:20px  0 100px;
    line-height: 125%;
    color: #fff;

}