/* Main Content Styles */
main {
    max-width: 1200px;
    margin: auto;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px 10px;
}

#images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

#synopsis {
    text-align: justify;
    line-height: 1.5;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.033);
    padding: 10px;
    text-indent: 50px;
    font-size: 1.25em;
}


@media (min-width: 680px) {
    img {
        max-width: 50%;
    }

    #images {
        flex-direction: row;
    }
}