@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;
  gap: 100px;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  background-color: #ffffff;
}

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

ul {
  display: grid;
  gap: 24px;
}

li {
  display: flex;
  align-items: center;
  list-style: none;
}
