#login {
    margin: 0px;
    padding: 8px;
    padding-top: 12px;
    background-color: white;
    border-radius: 5px;
    display: inline-block;
}

#films {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.film {
    width: 150px;
    height: 225px; /* Add a fixed height value */
    margin: 5px;
    padding: 1px;
    background-color: white;
    border-radius: 5px;
    text-align: center;
    display: flex; /* Add display flex */
    justify-content: center; /* Add justify-content center */
    align-items: center; /* Add align-items center */
}

.film img {
    width: 100%;
    height: 100%; /* Change height to 100% */
    border-radius: 5px;
    object-fit: cover; /* Change object-fit property to cover */
    max-height: 100%; /* Add max-height property */
}
