body {
            font-family: Georgia, 'Times New Roman', Times, serif;

            text-align: center;

            margin: 0;
            padding: 0;

            
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url("assets/movie.png");
            
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            
            background-repeat: no-repeat;

            min-height: 100vh;
        }



        .movie {


            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 20px 0;
            background: transparent;

            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 15px;



            border-radius: 8px;
            display: flex;
            color: bisque;
            gap: 10px;
        }

        h1 {

            background: linear-gradient(to right, #fcfcfe, #3e4e65);
            -webkit-background-clip: text;
            background-clip: text;

            -webkit-text-fill-color: transparent;
            font-weight: 700;
            text-transform: uppercase;
            font-family: Georgia, 'Times New Roman', Times, serif;
            font-size: 2em;
            margin-top: 0;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }


        .movie-finder-container {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 12px;


            padding: 20px 20px;
           
            
            color: #2f2f2f;
            background: transparent;
        }







        button {
            padding: 10px 20px;
            color: #7c7c96;
            width: 100px;
            margin-left: 10px;



            background: transparent;
            border-radius: 10px;
            border: 2px solid #3e4e65;

            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            outline: none;

            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

            cursor: pointer;
            font-size: 16px;
            font-weight: 700;

        }

        button:hover {
            background-color: powderblue;
            transition: background-color 0.3s ease;
        }

        #movieInput {

            background: linear-gradient(to right, #86868b, #3e4e65);
            -webkit-background-clip: text;
            background-clip: text;
            color: #86868b;

            -webkit-text-fill-color: transparent;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            font-weight: 700;
            padding: 10px;
            max-width: 250px;
            width: 100%;
            border-radius: 10px;
            border: 2px solid #3e4e65;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            outline: none;
            font-size: 16px;
            transition: border-color 0.3s;

        }

        .search-box {
            margin-top: 20px;
        }



        .movie img {
            width: 100px;
            height: 150px;
            border-radius: 5px;

        }

        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background: #7b8e97;
            color: #21201f;
          
            text-shadow: 1px 1px 2px rgba(9, 3, 3, 0.1);
            margin: auto;

            font-size: 1.10rem;
            font-weight: 700;
            box-shadow: 0 2px 5px rgba(141, 138, 138, 0.1);
            border-top: 1px solid #2f2f2f;
            border-bottom: 1px solid #2f2f2f;
            outline: none;




        }

        .marquee-text {
            display: inline-block;
            padding-left: 100%;
            animation: scroll-left 15s linear infinite;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }