*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: .9rem;
}
img{
    max-width: 100%;
    max-height: 100%;
}

.hero{
    background: url('header.jpg') no-repeat;
    background-size: cover;
    padding: 150px 0;
    position: relative;
    z-index: 1;

}
.hero::before{
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    background: rgba(72, 52, 34, 0.8);
}
.container{
    text-align: center;
    width: 80%;
    margin: 0 auto ;
    color: white;
}
.text{
    position: relative;
}
.grid{
    background-color: white;
    display: grid;
    width: 90%;
    margin: 0 auto ;
    grid-template-columns: repeat(6, 1fr );
    grid-auto-rows: 240px;
    grid-gap: 30px;
    padding: 30px;
    font-size: .9em;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}
.movie-list > h1{
    font-size: 1.2rem;
}
.movie-list > p{
    font-weight: 400;
    color: rgb(202, 196, 190);
}