*{
    margin: 0;
    padding: 0;
}


body{
    font-family: 'Inter', sans-serif;
    font-size: 0.875;
    font-weight: 400;
    line-height: 1.4;
    color: #6B7280;
}

.main{

    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.header{
    background-color: rgba(0,0,0,0.5);
    background-blend-mode: multiply;
   background-size: cover;
   background-position: center 20%;
    background-image: url('https://images.unsplash.com/photo-1628432136678-43ff9be34064?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=363&q=80');
}

.container{
   display: flex;
   align-items: center;
   justify-content: space-around;
   color: white;
   font-weight: bold;
   position: relative;
}

.container-1{
    height: 200px;
}


.link{
    text-decoration: none;
    color: white;
}


form {
    position: absolute;
    display: flex;
  justify-content: center;
    width: 100%;
}

#input{
    height: 30px;
    border: 1px solid #D1D5DB;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: center; 
    gap: 5px;
    padding: 0 0.5em;
    width: 60%;
    background-color: white;
    
}

#btn-search{
    width: 20%;
    background-color: green;
    border: none;
    border: 1px solid #D1D5DB;
}




.movie-container{
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 50px 0;
    padding: 0 2em;
    
}


.poster{
margin: 0;
width: 150px;

}


.fa-solid{
    color: gold;
}


.movie-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: black;
    margin-bottom: 10px;
}


.movie-title{
    margin-right: 20px;
}


.movie-stats{
    color: black;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}


#btn-add{
   border: none;
   background-color: white;
}



.whatchlist-container{
    background-color: lightgrey;
    height: 500px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
    
}




.whatchlist-content{
    margin-bottom: 100px;
    text-align: center;
    font-size: 24px;
}


a{
    text-decoration: none;
    color: black;
}


.fa-video{
    color: gray;
    font-size: 200px;
    position: absolute;
    margin-left: 200px;
    margin-top: 100px;
    
}