@font-face {
  font-family: "Akaya Kanadaka";
  src: url("/fonts/AkayaKanadaka-Regular.ttf");
}

* {
  font-family: "Akaya Kanadaka", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffbda7;
  background-image: repeating-linear-gradient(
    135deg,
    #ffffff,
    #ffffff 20px,
    #ffbda7 20px,
    #ffbda7 40px
  );
  overflow: hidden;
}

#amazing {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#tap-counter {
  font-size: 30px;
  font-weight: bold;
  color: black;
}

@supports (-webkit-text-stroke: 0.5px black) {
  #tap-counter {
    -webkit-text-stroke: 0.5px black;
    -webkit-text-fill-color: #ffbda7;
  }
}

#amazing:hover {
  transform: scale(1.1);
}

#amazing:active {
  transform: scale(0.95);
}

#amazing:focus-visible {
  outline: none;
}

#amazing img {
  max-width: 200px;
  height: auto;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffbda7;
  text-align: center;
  padding: 10px;
}

footer a {
  text-decoration: none;
  color: #000000;
}

footer a:hover {
  text-decoration: underline;
}
