html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 1.5rem;
    background: #fefefe;
    color: #0a2b4a;
    line-height: 1.5;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.hny-table {
    display: table;
    width: 100%;
    height: 100%;
}

h1 {
    font-size: 1.375em;
}


@media screen and (min-width: 1024px) {
    h1 {
        font-size: 1.75em;
    }
}

.logo {
    display: table-cell;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
}

.logo img {
    aspect-ratio: 4 / 1;
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
}

address {
    font-style: normal;
    font-size: 0.75em;
}

@media screen and (min-width: 1024px) {
    address {
        font-size: 1em;
    }
}

strong {
    display: block;
    font-size: 1.125em;
}

a {
    color: currentColor;
}

.countdown {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 1rem;
    padding: 0;
    list-style: none;
}

.countdown__items {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin: 0 -0.25rem;
    padding: 0;
    list-style: none;
}

.countdown__items > li {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    margin-bottom: 0;
    padding: 0 0.25rem;
}

.countdown__items > li > span {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    overflow: hidden;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 0.75em;
}

@media screen and (min-width: 650px) {
    .countdown__items > li > span {
        padding: 2rem;
        font-size: 1em;
    }
}

@media screen and (min-width: 782px) {
    .countdown__items > li > span {
        padding: 2rem 3rem;
    }
}

@media screen and (min-width: 1024px) {
    .countdown__items > li > span {
        padding: 2rem 4rem;
    }
}

@media screen and (min-width: 1400px) {
    .countdown__items > li > span {
        padding: 2rem 5rem;
    }
}

.countdown__items > li > span:before {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(76, 142, 0, 0.05);
    content: "";
    pointer-events: none;
}

.content-block .countdown__items > li > span:before {
    background: #264702;
}

.countdown__items > li > span > span {
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #8ec100;
    font-size: 1.75em;
    line-height: 1;
}

@media screen and (min-width: 650px) {
    .countdown__items > li > span > span {
        font-size: 2em;
    }
}

@media screen and (min-width: 1400px) {
    .countdown__items > li > span > span {
        font-size: 3em;
    }
}
