body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    background: black;
    color: aliceblue;
}

.app {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}
header {
    text-align: center;
    margin-bottom: 20px;
}
input, button {
    padding: 10px;
    font-size: 16px;
    margin: 5px;
    border: none;
    border-radius: 5px;
}
input {
    width: 60%;
}
button {
    background: red;
    color: white;
    cursor: pouinter;
}
button:hover {
    background: red;
}
#movielist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}
.movie-card {
    background: black;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}
.movie-card img {
    width: 100%;
    height: auto;
}
#Favorites {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.fav-card {
    background: black;
    padding: 8px 12px;
    border-radius: 6px;
}
