*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Source Code Pro", monospace;
    background-color:black;
    text-align: center;
    color: white;
}
h1{
    margin-top: 20px;
}

#search-input{
    margin-top:50px;
    width: 200px;
    height: 40px;
    
    text-align: center;
    font-weight: 700;
    border-radius: 20px;
    border: 4px solid #7A6263;
    box-shadow:4px 4px ;
    color: #7A6263;
}

#search-button{
    margin-left: 10px;
    width:100px;
    height: 25px;
    border-radius: 10px;
    align-self: center;
    border: 2px solid #7EBDC3;
    box-shadow: 3px 2px #7EBDC3;
    font-weight:500;
}

.movie-img{
    border: 5px solid purple;
    border-radius: 20px;
    box-shadow: 4px 4px rgb(144, 58, 144);
    height: 300px;
    margin-top: 10px;
}

.details{
    display: flex;
    margin-top: 15px;
    flex-direction: column;
    color: white;
    font-weight: 800;
    gap: 10px;

}

.end i{
    color: red;
}
.end{
    position:fixed;
    font-size: 12px;
    font-weight: 700;
    bottom: 5px;
    
}

@media (max-width:600px){
    .end{
       display: none;
    }
}