body {
  font-family: system-ui, -apple-system, Arial, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 
#wrapper {
  max-width: 1200px;
  margin: 0 auto;
} */

header,
footer {
  background-color: #333;
  color: white;
  padding: 1em 0;
  text-align: center;
}

header h1 img {
  max-width: 100%;
  height: auto;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  position: relative;
}

nav ul li {
  margin: 0 15px;
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  padding: 0;
  list-style: none;
  z-index: 1000;
  min-width: 200px;
}

nav ul li:hover ul {
  display: block;
}

nav ul li ul li {
  width: 100%;
}

nav ul li ul li a {
  padding: 10px;
  border-top: 1px solid #555;
  display: block;
  white-space: nowrap;
}

nav ul li ul li a:hover {
  background-color: #555;
}

#content {
  padding: 2em 0;
}

#left,
#right {
  padding: 20px;
}

#left {
  float: left;
  width: 65%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#right {
  float: right;
  width: 30%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.small-post,
.small-post2 {
  margin-bottom: 20px;
}

.small-post img,
.small-post2 img {
  max-width: 100%;
  height: auto;
}

.footer-p {
  text-align: center;
  padding: 10px 0;
}

#search input.text {
  width: 200px;
  padding: 5px;
  margin-right: 10px;
}

#search input.submit {
  padding: 6px 10px;
  background-color: #555;
  color: white;
  border: none;
  cursor: pointer;
}

#feature {
  clear: both;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.small-post2 {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
}