body {
  background: url('/assets/background.jpg');
  display: flex;
  justify-content: center;
  margin: 0;
}

.main-container {
  flex: 1;
  max-width: 50rem;
  background-color: #b1a470ff;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0px 0px 12px 3px;
}

#header-img {
  margin: 0rem 0.5rem 0.5rem 0.5rem;
}

main {
  display: flex;
  margin: 0rem 0.5rem 0.5rem 0.5rem;
  background-color: white;
  border: #9c4350 solid 1px;
  border-radius: 10px;
  overflow: hidden;
}

.active {
  color: #9c4350;
  text-decoration: none;
}

nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #f6f6ef;
  padding-top: 3rem;
  padding-left: 1rem;
  font-size: medium;
  font-weight: 700;
  line-height: 2rem;
}

nav a {
  color: #97915A;
}

nav a:hover {
  text-decoration: none;
}

.red-separator {
  background-color: #9c4350;
  border: #9c4350 solid 1px;
}

.content {
  flex: 3;
  background-color: white;
}

.content h1 {
  text-align: center;
  color: #9c4350;
  font-size: x-large;
}

.content p {
  margin-left: 2rem;
  margin-right: 2rem;
}

.content h2 {
  margin: 1rem;
  background-color: #DAD2B4;
  font-size: medium;
  font-weight: bold;
}

.content .works {
  display: flex;
  justify-content: center;
}

.content .works div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content .works div img {
  width: 8rem;
}

.content .work-list div img {
  width: 8rem;
}

.content .work-list div {
  display: flex;
  align-items: center;
  padding: 1rem;
}

footer {
  text-align: center;
  color: #363636;
  font-weight: bold;
  padding: 1rem;
}

footer a {
  color: #363636;
}