body {
    background: linear-gradient(to bottom, rgb(26.8, 33.4, 40.6) 0%, rgb(37.37, 12.36, 43.62) 100%);
    height: 120vh;
    margin: 440px;
    border: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font to use */
    font-family: "Jockey One", sans-serif;
    font-weight: 400;
    color: white; 
  }

  #background-light {
    position: absolute;
    width: 907px;
    height: 1055px;
    top: 0px;
    right: 0px;
  }

  .logo {
    position: absolute;
    width: 200px;
    top: 30px;
    left: 30px;
  }

  .logo:hover {
    transform: scale(1.02); 
    transition: transform 0.3s ease;
  }

  /* all search design */
  .search {
    position: absolute;
    width:560px;
    height: 45px;
    top: 20px;
    right: 20px;
    background-color: #ffffff26;
    border-radius: 16px;
    opacity: 0.9;
    padding:10px;
    display: flex;
    align-items: center;
  }

  .search #search-text {
    background: transparent;
    flex: 1;
    border: 0;
    outline: none;
    padding: 24px 20px;
    font-size: 20px;
    color: white;
  }

  ::placeholder {
    color: white;
  }

  .search #search-icon {
    border: 0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: none;
    cursor: pointer;
  }

  .search #search-icon img {
    width: 40px;
  }

  #search-icon:hover {
    transform: scale(1.02); 
    transition: transform 0.3s ease;
  }

  /* all movie-card design */
  #search-results {
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
    top: 120px;
    left: 15px;
    margin-top: 5vh;
  }

  .movie-card {
    display: flex;
    flex-direction: column;
    left: 0px;
    top: 0px;
    border: 0;
    background: none;
    cursor: pointer;
    font-family: "Jockey One", sans-serif;
    font-weight: 400;
    color: white;
    text-align: left;
    width: 196px;
    flex: 0 0 calc(16.666% - 24px);

  }

  .movie-card .movie-img {
    width: 196px;
    height: 292px;
    object-fit: cover;
    position: relative;
    margin-bottom: 10px;
    border-radius: 24px;
  }

  .movie-card .movie-title {
    font-size: 20px;
  }

  .movie-card .director {
    font-size: 10px;
    letter-spacing: 0;
  }

  .movie-card .release-date {
    font-size: 8px;
  }

  .movie-card:hover {
    transform: scale(1.02); 
    transition: transform 0.3s ease;
  }
  