@font-face { font-family: MPLUS1; src: url('/font/MPLUS1p-Regular.ttf'); } 

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

body {
  font-family: MPLUS1, sans-serif;
  padding: 4%;

  height: 100vh;
  margin: 0;
  background-image: radial-gradient(#fff2e5 15%, transparent 25%), radial-gradient(#fff2e5 15%, transparent 25%);
  background-size: 75px 75px;
  background-position: 0 0, 37px 37px;
}

p {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
}

.horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#menu {
  font-size: 1.5rem;

  font-family: MPLUS1;
  color: #590606;
}

#menu img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
}

#menu .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

