#event {
    position: relative;
    background: transparent;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--pastel);
    margin-top: -5rem;
}

#event h1 {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    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: "Forum", serif;
    font-weight: 400;
    font-style: normal;
}

.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(--pastel);
}

.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(--blue);
    background-color: var(--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(--blue) ;
    color: var(--gold);
    cursor: pointer;
}

.content-event i {
    margin-right: 5px;
}