@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
* {
  box-sizing: border-box;
  user-select: none;
}

body {
  background-color: #8e44ad;
  color: #fff;
  font-family: 'Roboto Mono', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 30px 50px;
}

.counter {
  font-size: 60px;
  margin-top: 10px;
}

@media(max-width: 660px) {
  body {
    flex-direction: column;
  }
}


/* Reload for ifram */

button.reload {
  opacity: 0.5;
  transition: all 3s;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

button.hidden {
  opacity: 0;
}