#story.section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 56px;
}

.story-wrapper {
    max-width: 650px;
    margin: 0 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}


.story-avatar {
    width: 150px;
    height: 150px;
    margin: 10px auto 0px;
    border-radius: 50%;
    overflow: hidden;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-position: 0px 5px;
    object-fit: cover;
}

.story-avatar.groom img {
    object-position: 0px -30px;
}

#not-first-story-avatar {
    margin-top: 40px;
}

.story-role {
    font-family: "Gupter", serif;
    font-size: 18px;
    font-weight: 400px;
    letter-spacing: 1.8px;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 10px;
}

.story-name {
    font-family: "Gilda Display", serif;
    font-size: 32px;
    font-weight: 400;
}

.story-text p {
    font-family: "Josefin Sans", sans-serif;
    font-size: 21px;
    line-height: 1.5;
    color: #111;
    margin-bottom: 0px;
}

.story-text em {
    font-style: italic;
}

@media (max-width: 900px) {

    #story.section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .story-title {
        font-size: 42px;
        margin-bottom: 44px;
    }

    .story-avatar {
        width: 120px;
        height: 120px;
    }

    .story-name {
        font-size: 26px;
    }

    .story-text p {
        font-size: 14px;
        line-height: 1.9;
    }

    .story-wrapper {
        margin: 0 15px 0;
    }
}