body {
    font-family: "Alumni Sans SC", sans-serif;
    font-style: normal;
    font-weight: 400;
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
}

.wrapper {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.edge {
    display: flex;
    justify-content: center;
    margin: 20px 0 20px 0;
}

.edge img {
    max-width: 100%;
    max-height: 100%;
}

.handwritten {
    font-family: "Bad Script", cursive;
    font-weight: 700;
    font-style: normal;
    font-size: 2.9rem;
    color: #704e2b;
    text-shadow: 0 0 3px #f7d148;
    align-self: center;
}

.handwritten p {
    margin: 0;
}

.invitation {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.schedule {
    --columns: 3;
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin: 35px 0 50px 0;
    font-size: 1.2rem;
    text-align: center;
}

.date {
    font-size: 2.7rem;
    text-align: center;
}

.schedule__event {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule__icon {
    max-width: 70px;
    max-height: 70px;
}

@media only screen and (min-width: 600px) {
    .schedule__icon {
        max-width: 100px;
        max-height: 100px;
    }
}

.schedule__icon img {
    max-width: 100%;
    max-height: 100%;
}

.address {
    justify-content: center;
    text-align: center;
}

.timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.timer__title {
    margin-bottom: 0;
}

.timer__countdown {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.address p {
    margin: 0;
}

.timer__countdown li {
    display: inline-block;
    font-size: 0.8em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
    justify-items: center;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 360px) {
    li {
        font-size: 0.6em;
    }
}

li span {
    display: block;
    font-size: 3.5rem;
}

.xoxo {
    font-size: 2rem;
    text-align: center;
}