    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
    body {
        overflow-x: hidden;
        margin: 0%;
        padding: 0%;
        font-family: 'Poppins', sans-serif;
        background-color: #7fe4e7;
        /* display: flex;
    flex-wrap: wrap; */
    }
    
    * {
        box-sizing: border-box;
    }
    
    img {
        max-width: 100%;
    }
    
    main {
        display: flex;
        flex-wrap: wrap;
    }
    
    .results {
        color: rgb(59, 51, 51);
        margin: 0rem auto;
        width: 50%;
        text-align: center;
    }
    
    .results lottie-player {
        margin: 0rem auto;
    }
    
    header {
        width: 100%;
        background-color: #273c75;
        padding: 0.8rem;
        display: flex;
        justify-content: flex-end;
    }
    
    #filter {
        text-align: center;
        margin: auto;
    }
    
    .title {
        color: white;
        text-align: center;
    }
    
    .inputClass {
        padding: 0.5rem 1rem;
        border-radius: 50px;
        background-color: transparent;
        border: 3px solid #11131f;
        color: ivory;
        font-family: inherit;
        outline: none;
        font-size: 1rem;
        width: 100%;
        transition: all 0.3s;
    }
    
    .inputClass::placeholder {
        color: ivory;
    }
    
    .inputClass:focus {
        background-color: #0d0f2c;
        border: 3px solid rgba(126, 158, 255, 0.425);
    }
    
    .movies {
        width: 270px;
        min-width: 100px;
        background-color: #9682fc;
        border-radius: 0.5rem;
        box-shadow: 0 1px 10px 5px rgba(0, 0, 0, 0.541), 0 1px 2px 0 rgba(0, 0, 0, 0.644);
        overflow: hidden;
        margin: 1rem;
        position: relative;
        cursor: pointer;
    }
    
    .movies-info {
        display: flex;
        justify-content: space-around;
        align-items: center;
        color: white;
        padding: 0rem 0.5rem;
    }
    
    .movies-info h1 {
        font-size: 1.1rem;
    }
    
    .movies-info span {
        background-color: #22254d;
        border-radius: 0.5rem;
        padding: 0.20rem 0.3rem;
        margin: 0.2rem;
        font-weight: 900;
    }
    
    .overView {
        position: absolute;
        top: 0%;
        left: 0%;
        bottom: 0%;
        right: 0%;
        padding: 0.5rem;
        background-color: aqua;
        overflow: auto;
        text-align: center;
        transform: translateY(110%);
        transition: all 0.5s ease-in-out;
    }
    
    .overView h1 {
        position: relative;
    }
    
     ::-webkit-scrollbar {
        width: 10px;
    }
    
     ::-webkit-scrollbar-track {
        background: #d5d3d3;
    }
    
     ::-webkit-scrollbar-thumb {
        background: rgb(1, 75, 187);
        border-radius: 50px;
    }
    
    .overView h1::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 50%;
        height: 3px;
        background-color: black;
        display: block;
        text-align: center;
    }
    
    .movies:hover .overView {
        transform: translateY(0%);
    }
    
    .green {
        color: rgb(157, 255, 157);
    }
    
    .orange {
        color: rgb(241, 157, 0);
    }
    
    .red {
        color: rgb(204, 3, 3);
    }
    
    .display {
        display: none;
    }