@font-face {
  font-family: Ichigaya-Mincho;
  src: url(../fonts/ichigaya-mincho-font/Ichigayamincho-9MAv0.ttf);
}

@font-face {
  font-family: Remound-Rounded;
  src: url(../fonts/remond-rounded-font/RemondRoundedDemoRegular-4nBxW.otf);
}

:root {
  --body-background-color: #d5b072;
  --container-background-color: #e1c699;
  --header-footer-background-color: #a67b5b;

  --text-base-color: black;
  --heading-text-font-family: Ichigaya-Mincho;
  --body-text-font-family: Remound-Rounded;

  --header-footer-border: black 0.33rem solid;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  background-color: var(--body-background-color);
  line-height: 1.5;
}

header {
  top: 0;
  width: 100%;

  margin-bottom: 1rem;
  border-bottom: var(--header-footer-border);
}

header,
footer {
  background-color: var(--header-footer-background-color);
}

main {
  padding: 0 0 0 1rem;
  width: 100%;
}

footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 2.3rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-top: var(--header-footer-border);
}

footer p {
  margin: 0;
}

nav {
  display: flex;
  justify-content: space-around;

  padding-top: 0.5rem;
}

h1 {
  font-size: 32pt;
  text-align: center;
}

h2 {
  font-size: 28pt;
}

h3 {
  font-size: 24pt;
}

a {
  text-decoration: underline;
}

a:hover {
  color: orange;
}

:focus {
  outline: 0.1rem solid orange;
  outline-offset: 0.2rem;
}

table {
  border-collapse: collapse;
  width: 80%;
  margin-bottom: 2rem;
}

th,
td {
  border: 0.2rem solid black;
  padding: 0.5rem;
}

caption {
  text-align: left;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

h1,
h2,
h3 {
  font-family: var(--heading-text-font-family);
  color: var(--text-base-color);
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}

p,
a,
ul,
ol,
label,
table {
  margin: 0 0 1rem 0;
  font-family: var(--body-text-font-family);
  font-size: 14pt;

  color: var(--text-base-color);
}

.container {
  max-width: 75ch;
  margin: 0 auto 0 auto;
  background-color: var(--container-background-color);
}

.title {
  color: #523a29;
}

.title.strong {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  background-image: linear-gradient(#523a29, black);
}

img.menu {
  width: 60%;
  height: auto;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

img.gallery-item {
  margin: 0.5rem;
  width: 25rem;
  height: auto;
}

.box {
  margin: 0 2rem 1rem 0;
  padding: calc(0.5rem * 0.75);
  border: 2px solid #e5e7eb;
  background: #f8fafc;
}
