:root{
    --cs-primary: #7a00fd;
    --cs-black: black;
    --cs-white: white;
    --cs-gray: gray;
    --cs-transparent-black: #00000080;
    --cs-transparent-white: #ffffff80;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.5s;

}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.poster-img{
    height: 480px;
}

.poster-img .img-overlay{
    background: var(--cs-transparent-black);

}

.bg-cs-light{
    background: #e3f2fd !important;
}

/* card hover  */
.cs-hover:hover{
    cursor: pointer;
    transform: scale(1.1);
    z-index: 9999999;
}
