@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: #c0d0db;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main {
  display: flex;
  flex-direction: column;
}
body main h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 0.2rem;
  font-weight: 700;
  cursor: default;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.3411764706);
}
body main h2 small {
  font-size: 0.75rem;
  color: gray;
}
body main .codes {
  display: flex;
  justify-content: space-around;
}
body main .codes .code {
  width: 110px;
  height: 60px;
  margin: 0.5rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.3411764706);
  cursor: default;
}
body main .codes .code small {
  position: absolute;
  top: -30%;
  font-weight: 700;
}
body main .codes.hidden {
  display: none;
}/*# sourceMappingURL=keycodes.css.map */