body {
    margin: 0;
    background: black;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

div#header {
    height: 100px;
}

div#logo img {
    max-height: 100%;
}

div#logo {
    height: 100%;
    padding: 2em;
    text-align: center;
}

div {
    box-sizing: border-box;
}

div#hero img {
    width: 100%;
}

div#movie-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    flex-direction: column;
    margin: 5px 15px;
    font-size: 0.6rem;
}

div#summary {
    font-size: 0.8rem;
}


.container {
    margin: 15px;
}

div#moments {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.moment {
    display: flex;
    width: 150px;
    height: 190px;
    flex: 1 1 150px;
    overflow: hidden;
    justify-content: center;
}

div.moment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}