.about {
    position: relative;
    font-family: var(--font-biasa);
}

.groom, .bride {
    padding: 2rem;
}

.bride {
    text-align: right;
}

.and {
    font-family: var(--font-kaligrafi);
    font-size: 2rem;
    text-align: center;
}

.about h1 {
    font-family: var(--font-kaligrafi);
    font-size: 2rem;
}

.about img {
    width: 100%;
}

.about h2 {
    font-family: var(--font-tambahan);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15rem;
    margin: 0.5rem 0;
}

.about p {
    line-height: 1.5rem;
    margin-bottom: 1rem;
}

.about a {
    text-decoration: none;
    border: 1px solid var(--text-color);
    padding: 0.5rem;
    font-size: 1rem;
    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);
}