@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;600;700;800;900&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Heebo", sans-serif;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
}
body main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main button {
  width: 180px;
  height: 50px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background-color: #771818;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
body main button:focus {
  outline: none;
}
body main button .circle {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%) scale(0);
  animation: scale 0.5s ease-in-out;
  opacity: 0.95;
}

@keyframes scale {
  to {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}/*# sourceMappingURL=botton.css.map */