* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  src: url('./karelia.otf');
  font-family: 'karelia';
}

#timers {
  display: flex;
  font-family: 'karelia';
}

.timer {
  width: 50vw;
  height: 100vh;
  font-size: max(7vw, 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  white-space: pre-wrap;
}

#months_timer {
  background: mediumpurple;
  color: greenyellow;
}

#weeks_timer {
  background: greenyellow;
  color: mediumpurple;
}

@media all and (max-width: 950px) {
  #timers {
    display: flex;
    flex-direction: column;
  }

  .timer {
    width: 100vw;
    height: 50vh;
    font-size: max(7.5vw, 60px);
  }
}
