.about {
    position: relative;
}

.groom, .bride {
    height: 100dvh;
    min-height: 100svh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.groom {
    background: linear-gradient(var(--background) 0%, transparent 20%, transparent 80%, var(--background) 100%), url(../img/groom.jpg);
    background-position: center;
    background-size: cover;
}

.bride {
    background: linear-gradient(var(--background) 0%, transparent 20%, transparent 80%, var(--background) 100%), url(../img/bride.jpg);
    background-position: center;
    background-size: cover;
}

.content-groom, .content-bride {
    background: rgba(251, 247, 244, 0.5);
    padding: 1rem 1rem 2rem 1rem;
    border-radius: 1rem;
    color: var(--text-color);
}

.content-bride {
    text-align: right;
}

.about h1 {
    font-family: var(--font-biasa);
    font-size: 1rem;
}

.about h2 {
    font-family: var(--font-kaligrafi);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    margin: 0.5rem 0;
}

.about p {
    font-family: var(--font-biasa);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.about a {
    text-decoration: none;
    border: 1px solid var(--text-color);
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    font-family: var(--font-biasa);
    color: var(--text-color);
    transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}

.about a:hover {
    background: var(--text-hover);
    color: var(--text-color-dark);
    border: 1px solid var(--text-hover);
}