@font-face {
  font-family: "Dyna Puff";
  src: url("/assets/DynaPuff-VariableFont.ttf") format("truetype");
}

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

h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}

html {
  font-family: "Dyna Puff", sans-serif;
}

button {
  background: radial-gradient(circle, rgba(170,212,45,1) 0%, rgba(90,168,26,1) 100%);
  background-position: center;
  transition: .3s;
  background-size: 100%;
  border-radius: 10px;  
  border-width: 0;
  color: white;
  cursor: pointer;
  height: 3rem;
  padding-left: 16px;
  padding-right: 16px;
  text-align: left;
}

button:hover:not(:disabled) {
  transition: .3s;
  animation: bounce .4s;
  transition-timing-function: cubic-bezier(0.2, 0.89, 0.65, 1.74);
}

button:active:not(:disabled) {
  transform: scale(0.95);
}

button:disabled {
  filter: grayscale(1);
}

input {
  width: 200px;
  border: none;
  height: 40px;
  padding: 0 10px;
  border-radius: 20px;
  outline: 0 none;
  background-color: #f3ebe5;
}

input:focus {
  outline: 2px solid black;
}

#back-home {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  33% {
    transform: scale(1.05);
  }

  66% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}