.groom {
    background: linear-gradient(rgba(212,180,140,0) 0%, rgba(0,0,0,0) 10%, rgba(0,0,0,0) 40%, rgba(212,180,140,1) 100%), url(../img/groom.jpg) center/cover no-repeat;
}

.bride {
    background: linear-gradient(rgba(212,180,140,1) 0%, rgba(0,0,0,0) 10%, rgba(0,0,0,0) 40%, rgba(212,180,140,1) 100%), url(../img/bride.jpg) center/cover no-repeat;
}

.groom, .bride {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    color: var(--text-primary);
    padding: 2rem;
    font-family: var(--font-body);
}

.groom h2, .bride h2 {
    font-family: var(--font-body);
    font-size: 1rem;
}

.groom h1, .bride h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 1rem;
}

.groom p, .bride p {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.groom a, .bride a {
    text-decoration: none;
    color: var(--text-on-dark);
    background-color: var(--primary);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.5s ease, color 0.5s ease;
}

.groom a:hover, .bride a:hover {
    color: var(--text-primary);
    background-color: var(--accent-gold);
}

.groom i, .bride i {
    margin-right: 5px;
}