html, body {
  height: auto;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  font-family: "MS Gothic", "ＭＳ ゴシック", monospace;
}
.container {
  background-color: #FFF1D7;
  display: flex;
  flex-direction: column;
  width: 1300px;
  min-height: 100vh;
}
.header {
  width: 1303px;
  height: 51px;
  border-bottom: 1px solid black;
  position: relative;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.header img {
  position: absolute;
  left: 15px;
  top: 5px;
  height: 41px;
  width: auto;
}
.header-divider {
  position: absolute;
  left: 125px;
  top: calc(50% - 16px);
  width: 1px;
  height: 32px;
  background-color: black;
}
.nav-links {
  margin-left: 146px;
  display: flex;
  gap: 20px;
  height: 100%;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}
.footer {
  background-color: #FFF1D7;
  border-top: 2px solid #000;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-top: auto;
  width: 100%;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}