.navbar{
    z-index: 1;
    background-color: rgb(36, 36, 36);
    opacity: 1;
}
.hamburger-menu{
    background-color: rgb(36, 36, 36);
    opacity: 1;
}
.nav-links a{
    text-decoration: none;
    color: white;
} 
.main-section-movies{
    width: 100%;
    height: 100%;
    background-color: rgb(216, 216, 216);
}
.main-section-movies h1{
    padding-top: 7%;
    padding-left: 3%;
    padding-bottom: 2%;
    font-family: 'Montserrat', sans-serif;
    color: rgb(36, 36, 36);
    font-size: 2rem;
}

.movies-section{
    
    width: 80%;
    margin: auto;
    height: 70%;
    display: grid;
    justify-content: center;
}

.movies-list{
    text-decoration: none;
    list-style: none;
    display: grid;
    grid-template-columns: 40% 40% ;
    grid-template-rows: 15% 15% 15% 15% 15%;
    gap: 50px;
    justify-content: center;
    
}
.movies-list li {
    background-color: white;
    display: flex;
    box-shadow: 5px 10px 18px #888888;
}

.movies-list li a:hover{
    cursor: pointer;
}


.movies-list li img{
    margin-left: 5%;
    position: relative;
    top: -15px;
    height: 250px;
    margin-bottom: 150px;
    border-radius: 5px;
}

.movies-list li span{
    width: 100%;
    color: #000;
}

.movies-list li span a h1{
    padding-top: 8%;
    padding-bottom: 0%;
    padding-left: 5%;
    width: 100%;
    font-size: 1.6vw;
    font-family: 'Quicksand', sans-serif;
}
.movies-list li span a h1:hover{
    text-decoration: underline;
    text-decoration-color: rgb(122, 122, 122);
}

.movies-list li span a h4{
    font-family: 'Quicksand', sans-serif;
    color: lightgrey;
    padding-left: 5%;
    padding-bottom: 4%;
    padding-right: 5%;
}
.movies-list li span a h3{
    font-family: 'Quicksand', sans-serif;
    padding-left: 5%;
    font-size: 15px;
    color: cadetblue;
    padding-right: 5%;
}
.movies-list li span a {
    text-decoration: none;
}
.stars{
    padding-top: 5%;
    padding-left: 5%;
    display: flex;
    justify-content: space-around;
    width: 30%;
}
.stars .checked {
    color: orange;
  }

  @media screen and (max-width:1370px), screen and (max-height: 760px){
    .movies-list{
    grid-template-columns: 100%;
    grid-template-rows: 7% 7% 7% 7% 7% 7% 7% 7% 7% 7%;
  }
  .main-section-movies h1{
      padding-top: 15%;
      padding-bottom: 5%;
  }
}
@media screen and (max-width:800px){
    .movies-list{
        grid-template-columns: 100%;
        
      }
}
@media screen and (max-width:720px) and (max-height: 760px), screen and (max-width:760px){
    .movies-list{
        grid-template-columns: 100%;
        
      }
    .main-section-movies h1 {
        padding-top: 25%;
        font-size: 7vw;
        padding-bottom: 45px;
    }
    .movies-section{
        width: 90%;
        grid-template-columns: 100%;
    }
    .movies-list li img{
        width: 100px;
        height: 140px;
    }
    .movies-list li a{
        display: grid;
    }
    .movies-list li span a h1 {
        display: grid;
        justify-content: center;
        padding: 0%;
        font-size: 4.5vw;
    }
    .movies-list li span a h4 {
        display: grid;
        justify-content: center;
        font-size: 12px;
    }
    .movies-list li span a h3 {
        display: grid;
        justify-content: center;
        height: 60px;
        font-size: 2.7vw;
    }
    .stars{
        margin: auto;
        float: right;
        width: 60%;
        margin-top: 4%;
        padding-top: 8%;
        justify-content: right;
        
    }
    
}