body{
background:#111;
color:white;
font-family:Arial;
margin:0;
margin-left: 500px;
}

header{
background:black;
padding:20px;
text-align:center;
}

#search{
padding:10px;
width:300px;
border:none;
border-radius:5px;
  margin-top:50px;
}

#movies{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
gap:20px;
padding:20px;
}

.movie{
background:#222;
padding:10px;
border-radius:10px;
text-align:center;
}

.movie img{
width:100%;
border-radius:10px;
}

button{
margin-top:50px;
padding:8px;
background:red;
border:none;
color:white;
cursor:pointer;
}

#trailerModal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
flex-direction:column;
}

#trailerVideo{
width:70%;
height:70%;

}

