.groom, .bride {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: black;
    padding: 2rem;
    font-family: var(--font-biasa);
}

.groom {
    background-color: var(--button);
}

.bride {
    background: linear-gradient(rgba(224,216,199,1) 90% , rgba(224,216,199,0) 100% );
    padding-bottom: 8rem;
}

.groom h2, .bride h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.groom img, .bride img {
    height: auto;
    width: 100%;
    box-shadow: -10px 10px 10px black;
    margin-bottom: 1rem;
}

.groom h1, .bride h1 {
    font-family: var(--font-kaligrafi);
    font-size: 4rem;
}

.groom p, .bride p {
    font-size: 1rem;
    line-height: 1.2rem;
    margin-bottom: 1rem;
}

.groom a, .bride a {
    text-decoration: none;
    color: var(--button);
    background-color: black;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.5s ease, color 0.5s ease;
}

.groom a:hover, .bride a:hover {
    color: white;
    background-color: black;
}

.groom i, .bride i {
    margin-right: 5px;
}

.and {
    background-color: var(--button);
}

.content-and {
    text-align: center;
    font-size: 2rem;
    font-family: var(--font-biasa);
}