#about{
    position: relative;
    background: linear-gradient(to bottom, var(--pastel) 0%, var(--pastel) 92%, transparent 100%);
    color: var(--blue);
    padding: 2rem 2rem 10rem 2rem;
}

.quotes {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quotes p, 
.bride h2,
.bride p,
.groom h2,
.groom p {
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
}

.quotes img {
    width: 10%;
    height: 100%;
}

.quotes .garis-vertikal {
    width: 3px;
    height: auto;
    background-color: var(--blue);
}

.bride,
.groom {
    margin-bottom: 2rem;
}

.groom,
.bride {
    text-align: center;
}

.quotes p,
.bride p,
.groom p {
    font-size: 1.1rem;
}

.bride h2,
.groom h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bride img,
.groom img {
    width: 100%;
    height: auto;
    box-shadow: -10px 10px 1px var(--blue);
    margin-bottom: 1rem;
}

.bride h3,
.groom h3,
.and {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
}

.and {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.and::before, .and::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--blue);
    margin: 0 1rem;
}

.bride p,
.groom p {
    margin-bottom: 1rem;
}

.bride a,
.groom a {
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 1rem;
    background-color: var(--blue);
    color: var(--gold);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.bride a:hover,
.groom a:hover {
    background-color: var(--gold);
    color: var(--blue);
}