body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #94dcee;
color: #181313;

}

.app-container {
    max-width: 700px;
    margin: 60px auto;
    padding: 26px;
    background-color: whitesmoke;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

h1 {
    margin-bottom: 10px;
}

.search-box {
    margin: 25px 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}

input {
    padding: 10px;
    width: 70%;
    border: 1px solid #cfcfcf;
}

button {
    padding: 10px 16px;
    border: none;
    background-color: #0c090900;
    color: whitesmoke;
    cursor: pointer;
}

button:hover {
    background-color: #444;
}

.movie-card {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 17px;
    border-radius: 11px;

}

.movie-results {
    margin-top: 25px;
    padding: 20px;
     border-radius: 10px;
     background-color: #fafafa;
}

.movie-card img {
    max-width:200px;
    border-radius: 8px;
    margin: 10px auto;
}

.movie-card h2 {
    text-align: center;
    margin-bottom: 10px;

}

.movie-card p {
    line-height: 1.7;  
    margin: 6px 0;

}

.movie-card p strong {
    color: #444;
}

@media (max-width: 600px) {
    .search-box{
        flex-direction: column;
    }
}

input {

    width: 100%;
}
