#ceremony {
    .ceremony-text {
        h5 {
            width: fit-content;
            font-size: 2rem;
            font-weight: 400;
            padding: 5px 20px;
            margin: 0 auto 10px;
            font-style: italic;
        }

        p {
            font-size: 1.7rem;
            line-height: 2.5rem;
            font-weight: 200;
            font-style: italic;
        }
    }

    .ceremony-pictures {
        .ceremony-picture {
            height: 280px;
            width: 280px;

            img {
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }
    }
}

@media only screen and (max-width: 768px) {
    #ceremony {
        .ceremony-text {
            h5 {
                font-size: 1.5rem;
                margin: 0 auto 10px;
            }

            p {
                font-size: 1.2rem;
                line-height: 1.6rem;
            }
        }
        .ceremony-pictures {
            .ceremony-picture {
                height: 200px;
                width: 200px;
            }
        }
    }
}

@media only screen and (max-width: 480px) {
    #ceremony {
        .ceremony-text {
            h5 {
                font-size: 1.2rem;
                margin: 0 auto 7px;
            }

            p {
                font-size: 1rem;
                line-height: 1.3rem;
            }
        }
        .ceremony-pictures {
            .ceremony-picture {
                height: 160px;
                width: 160px;
            }
        }
    }
}