body {
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

.movies {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.movie {
    background: #222;
    border-radius: 10px;
    padding: 10px;
    width: 180px;
}

.movie img {
    width: 100%;
    border-radius: 10px;
}

/* Mobile-Ansicht (Handy, Tablets hochkant) */
@media (max-width: 600px) {
    .movies {
        flex-direction: column;      /* Filme untereinander */
        align-items: center;         /* mittig ausrichten */
    }

    .movie {
        width: 90%;                  /* fast volle Breite */
        max-width: 400px;            /* aber nicht zu breit */
    }
}
