@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

@font-face {
  font-family: 'burbank';
  src: url('../fonts/burbank.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
  --font: 'Anton', sans-serif;
  --bg-color: #00000070;
}

body {
  margin: 0;
  padding: 0;
}

main {
  padding: 10px;
  font-size: 24px;
}

.count-container {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--font);
  color: #ffffff;
  text-shadow: -1px 1px #0000009c, -1px 1px 1px #0000009c, 0 0 1px #0000009c;
}

.total-counter {
  display: flex;
  flex-direction: row;
  width: max-content;
  height: 60px;
  gap: 20px;
  padding: 5px 10px;
  background: var(--bg-color);
  border-radius: 5px;
  font-family: 'Anton', sans-serif;
  font-size: 42px;
}

.counter-inner {
  display: flex;
  flex-direction: row;
  width: max-content;
  height: 60px;
  gap: 20px;
  padding: 5px 10px;
  background: var(--bg-color);
  border-radius: 5px;
  font-family: 'Anton', sans-serif;
  font-size: 42px;
}

.total-name {
  text-transform: uppercase;
  text-wrap: nowrap;
}

#total-value::before {
  content: 'x';
  margin-right: .05em;
}

.timers {
  display: flex;
  flex-direction: row;
  width: min-content;
  height: 30px;
  gap: 10px;
  padding: 10px;
  background: var(--bg-color);
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.timers-inner {
  display: flex;
  flex-direction: row;
  width: max-content;
  height: 30px;
  gap: 10px;
  padding: 10px;
  background: var(--bg-color);
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.icon-small{
  height: .9em;
  margin: auto 0;
  filter: invert(1);
}

.icon-med{
  height: .9em;
  margin: auto 0;
  filter: invert(1);
}

.counters {
  display: none;
  flex-direction: row;
  gap: 1em;
  font-family: 'Roboto', sans-serif;
  font-size: .75rem;
  font-weight: 900;
}

.cn-display, .kw-display {
  text-transform: lowercase;
}