* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #141414;
    color: white;
   
  }

  .navbar {
    padding: 0rem 2rem;
    background: linear-gradient(
      to bottom,
      rgba(20, 20, 20, 1),
      rgba(20, 20, 20, 0)
    );
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 5;
  }
  
  .navbar img {
    width: 8rem;
  }
  .link-section {
    display: flex;
    align-items: center;
  }
  .menu-items {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    cursor: pointer;
  }
  .menu-item {
    color: #e5e5e5;
  }
  .menu-item:first-child {
    color: #fff;
  }
  .menu-item:hover {
    color: #b1b1b1;
  }
  
  .profile-section {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
  }
  .profile-section img {
    width: 2rem;
    border-radius: 5px;
  }
  .profile-pic-span {
    display: flex;
    align-items: center;
  }
  header {
    background-image: url("./images/wallpapersden.com_spider-man-no-way-home-hd-poster_wxl.jpg");
    
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
  }
    /* backdrops */
    .leftside-backdrop {
      height: 100vh;
      width: 36rem;
      position: absolute;
      z-index: 3;
      background: linear-gradient(
        to right,
        rgba(20, 20, 20, 0.8),
        rgba(20, 20, 20, 0)
      );
    }
  .movie-dtl {
    z-index: 4;
    width: 33rem;
    margin-left: 3rem;
    line-height: 1.4rem;
    font-size: 1rem;
  }
  .movie-dtl img {
    width: 25rem;
    margin-bottom: 1rem;
  }
  span .start{
    opacity: .6;
  }

  .movie-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  
  
  .button {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: large;
    border-radius: 5px;
    border: none;
    gap: 0.3rem;
    cursor: pointer;
  }
  .play-button:hover {
    background-color: rgba(255, 255, 255, 0.75);
  }
  .info-button {
    background-color: rgba(109, 109, 110, 0.7);
    color: #fff;
  }
  .info-button:hover {
    background-color: rgba(109, 109, 110, 0.4);
  }
  main {
    margin: 1rem 0 3rem 3rem;  
  }
  .movie-lists{
      margin-top: 2rem;
  }
  .movie-list {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: scroll;
  }
  .movie-list::-webkit-scrollbar {
    display: none;
  }
  .movie-element img {
    width: 15rem;
    border-radius: 4px;
    cursor: pointer;
  }
  


  