.event {
    position: relative;
    background: transparent;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--background);
    margin-top: -3rem;
}

.event h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    word-spacing: 0.5rem;
    line-height: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.content-event {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: var(--font-body);
}

.ceremony,
.reception {
    width: 100%;
}

.ceremony {
    margin-bottom: 4rem;
}

.reception {
    margin-bottom: 1rem;
}

.content-event h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.content-event .day {
    font-size: 1.1rem;
}

.content-event .date {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.content-event .garis-vertikal {
    width: 2px;
    height: 3rem;
    background-color: var(--background);
}

.content-event .dd {
    font-size: 4rem !important;
}

.content-event p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.content-event a {
    text-decoration: none;
    color: var(--text-primary);
    background-color: var(--accent-gold);
    padding: 0.5rem;
    font-size: 1.1rem;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.content-event a:hover {
    background-color: var(--text-primary);
    color: var(--accent-gold);
    cursor: pointer;
}

.content-event i {
    margin-right: 5px;
}

.plain-address,
.plain-address a,
.plain-address * {
    color: inherit !important;
    text-decoration: none !important;
    background: transparent !important;
    pointer-events: none !important;
    cursor: default !important;
}