@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
:root {
  font-size: 16px;
  font-family: 'Varela Round', sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: #ddA6fD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  background: yellowgreen;
  -webkit-box-shadow: 0 0 10px #000;
          box-shadow: 0 0 10px #000;
}

h1 {
  font-size: 5rem;
  font-size: clamp(3rem, 5vw, 6vw);
  padding: .2em;
  text-align: center;
}

h1 a {
  color: black;
  text-decoration: none;
  cursor: default;
}

.counter {
  font-size: 9rem;
}

button {
  font-size: 1.2rem;
  padding: .5em;
  background-color: #444;
  border-color: #000;
  color: #8e8;
  cursor: pointer;
}

button:focus, button:hover {
  background-color: #000;
}

.blue {
  color: blue;
}
/*# sourceMappingURL=style.css.map */