/* header */
header {
  height: 80px;
  display: grid;
  place-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 16px;
  margin-inline: auto;
  padding: 1rem;
  font-weight: bold;
  background-color: #ffd586;
}

.logo {
  font-weight: bold;
}

.header-container.is-view {
  background-color: #a76545;
  color: #ffffff;
  position: fixed;
  opacity: 0.8;
}

.header-menu {
  display: flex;
  gap: 1rem;
}

.top-kv {
  background-color: #ffd586;
  color: #a76545;
  padding: 1rem;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  height: 800px;
  display: grid;
  place-items: center;
}

.about-kv {
  background-color: #ffd586;
  color: #a76545;
  padding: 1rem;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  height: 500px;
  display: grid;
  place-items: center;
}

/* -------------- design ----------------- */

body {
  line-height: 1.8;
  font-size: 16px;
  color: #a76545;
}

.container {
  width: 90%;
  max-width: 960px;
  margin-inline: auto;
  padding: 50px 0;
}

.text p {
  margin: 2rem 0;
}
