* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(to right, #2d2d2d, #000000);
}


header{
    background-color: #0000005f;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    position: fixed;
    z-index: 100;
    
   
}

.logo{
    text-decoration: none;
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    font-size: 1.8em;
}

.navbar li{
    padding: 0 20px;
    display: inline-block;
    list-style: none;
}

.navbar a{
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
}

.navbar a:hover{
    transition: all 0.3s ease 0s;
    color: rgb(79, 226, 255);
    
}

.baner-img img{
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}

section.new-show {
    padding: 70px 20px 30px 10px;
}

section {
    padding: 20px 20px 30px 10px;
}

section.how-are {
    padding: 50px 10px 0 0;
    color: #fff;
}

.new-cover-posters img {
    width: 335px;
    height: 220px;
}

.how-are .info {
    width: 100%;
    padding: 20px;
    font-size: 1.4em;
    color: #fff;
    
}

.row__poster {
    width: 100%;
    object-fit: contain;
    max-height: 100px;
    transition: 0.5s ease;
   
}

.row__poster:hover {
    transform: scale(1.05);
}


.cover-poster {
    border-radius: 20px;
    max-height: 200px;
    margin: 8px;
}

footer{
    background-color: black;
    padding: 20px 10px 20px 0;
    color: #fff;
}

@media (max-width: 1200px) {
    .logo {
      font-size: 1.5em;
    }
  
    .navbar li {
      padding: 0 10px;
    }
  
    .new-cover-posters img {
      width: 250px;
      height: 160px;
    }
  
    .how-are .info {
      font-size: 1.2em;
    }
  }
  
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      padding: 10px 5%;
    }
  
    .navbar {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .navbar li {
      padding: 10px 0;
    }
  
    .baner-img img {
      height: auto;
    }
  
    .new-cover-posters img {
      width: 200px;
      height: 130px;
    }
  
    .how-are {
      padding: 30px 5px 0 0;
    }
  
    .how-are .info {
      font-size: 1.1em;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      font-size: 1.2em;
    }
  
    .navbar li {
      padding: 5px ;
    }
  
    .new-cover-posters img {
      width: 180px;
      height: 120px;
    }
  
    .row__poster {
      max-height: 80px;
    }
  
    .how-are .info {
      font-size: 1em;
      padding: 15px;
    }
  
    .cover-poster {
      margin: 5px;
      max-height: 150px;
    }
  }