* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, avenir next, avenir,
    segoe ui, helvetica neue, helvetica, Ubuntu, noto, arial, sans-serif;
  color: #94a3b8;
  line-height: 1.5;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 20px;
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/roboto-regular-webfont.woff2) format('woff2');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/robotocondensed-bold-webfont.woff2) format('woff2');
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', Roboto, -apple-system, BlinkMacSystemFont,
    avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, noto,
    arial, sans-serif;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 8px #000;
}

p {
  margin: 0;
}

.countdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 50px);
}

.container {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  flex-wrap: 0;
}

.time-section {
  flex: 1;
  width: 90px;
  height: 90px;
}

.text {
  font-size: 2.5rem;
  margin: 1.5rem 0;
  text-transform: uppercase;
}

.bangy {
  color: #f43f5e;
  text-shadow: 0 0 2px #000;
}

footer {
  color: #64748b;
  padding: 0.5rem;
}

@media (min-width: 600px) {
  html,
  body {
    font-size: 32px;
  }

  .time-section {
    flex: 1;
    width: 144px;
    height: 144px;
  }

  .countdown {
    min-height: calc(100vh - 80px);
  }
}