@charset "UTF-8";

/* サンプルに必要なCSS */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  place-content: center;
  place-items: center;
  height: 100%;
  padding: 64px 16px;
  margin: 0;
  font-family: sans-serif;
  font-size: 16px;
  color: #222;
  background-color: #efefef;
}

body.dark {
  background-color: #222;
}

/* ul,liのリセットCSS */
ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

/* ボタンを横並びにするスタイル */
.buttonList {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* メニューを横並びにするスタイル */
.menu {
  display: flex;
  padding: 0 16px;
  background-color: #fff;
  box-shadow: 0 0 4px rgb(0 0 0 / 30%);
}
