.ctd {
    background: linear-gradient(var(--background) 0%, transparent 20%, transparent 80%, var(--background) 100%), url(../img/countingdays.jpg);
    background-position: center;
    background-size: cover;
    height: 50%;
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ctd-title {
    font-family: var(--font-kaligrafi);
    font-size: 1.5rem;
    font-style: italic;
}

.btn-save-date {
    margin-top: 1rem;
}

.btn-save-date a {
    text-decoration: none;
    border: 1px solid var(--text-color);
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    font-family: var(--font-biasa);
    color: var(--text-color);
    transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}

.btn-save-date a:hover {
    background: var(--text-hover);
    color: var(--text-color-dark);
    border: 1px solid var(--text-hover);
}

.btn-save-date i {
    margin-right: 5px;
}

.event {
    background: var(--background);
    padding: 2rem;
}

.ceremony, .reception {
    width: 100%;
    text-align: center;
    font-family: var(--font-biasa);
}

.ceremony {
    margin-bottom: 2rem;
}

.ceremony-title, .reception-title {
    font-size: 1.5rem;
    font-family: var(--font-kaligrafi);
    margin: 0.5rem 0;
    text-transform: uppercase;
}

.event-date {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.day {
    margin-bottom: 1rem;
}

.dd {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.mmyy {
    margin: 1rem 0;
}

.event p {
    margin-bottom: 1rem;
}

.event a {
    text-decoration: none;
    border: 1px solid var(--text-color);
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}

.event a:hover {
    background: var(--text-hover);
    color: var(--text-color-dark);
    border: 1px solid var(--text-hover);
}

.event i {
    margin-right: 5px;
}