@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap");

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

html {
  height: 100%;

  body {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 100%;
    margin: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
    color: #1f1b3f;
    background-color: #2b2840;
  }
}

a {
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
}

button {
  font-family: inherit;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.wrapper {
  display: grid;
  gap: 16px;
  width: min(720px, calc(100% - 32px));
  padding: 24px;
  border-radius: 10px;
  background: #ffffff;
}

.translation {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.3;
  color: #625d7a;
}
