html {
  box-sizing: border-box;
}

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

html,
body {
  height: 100%;
}

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

.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 {
  width: 100%;
  max-width: 550px;
  height: auto;
}

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;
  margin: 0 -0.25rem;
  padding: 0;
  list-style: none;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

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

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

@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 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(76, 142, 0, 0.05);
  content: "";
  z-index: -1;
  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;
  }
}
