@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #ffffff;
  color: #222222;
}

#wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
	gap: 100px;
  padding: 15px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
}

#site-header img {
  width: 200px;
  height: auto;
}

#site-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

#site-nav a {
  color: #222222;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#site-nav a:hover {
  color: #888888;
}

#site-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

#site-nav {
  background-color: transparent;
}

#site-nav a:hover {
  color: #aaaaaa;
}

#content {
  padding: 40px 0;
}

#site-footer {
  border-top: 1px solid #cccccc;
  padding: 20px 0;
  font-size: 14px;
  color: #666666;
}

#site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
	gap: 100px;
  padding: 20px 0;
  border-top: 1px solid #cccccc;
  font-size: 14px;
  color: #666666;
}

#footer-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

#footer-nav a {
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#footer-nav a:hover {
  color: #222222;
}
