@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Muli";
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: #a3c2d7;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main {
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .buttons {
  padding: 1.5rem;
}
body main .buttons .btn {
  width: 150px;
  height: 150px;
  margin: 1rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: medium;
  font-weight: 700;
  background-color: #ff3737;
  color: #ffff23;
  position: relative;
  z-index: 1;
  box-shadow: inset -5px -4px 0px rgba(0, 0, 0, 0.7215686275);
}
body main .buttons .btn:hover {
  background-color: #c92a2a;
  color: #fff;
}
body main .buttons .btn:active {
  transform: scale(0.95);
}/*# sourceMappingURL=board.css.map */