* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
   font-family: sans-serif;
}

/**NAVBAR**/
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 60px;
  background: #111;
  color: orange;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: orange;
  text-decoration: none;
}

.active {
  border-bottom: 2px solid orange;
}

/**HERO**/
.blog-hero {
  text-align: center;
  padding: 60px;
  color: white;
  background: #f4f4f4;
  background: url(https://plus.unsplash.com/premium_photo-1668031802460-89952ecb00f7?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8Y2F0ZXJpbmclMjBzZXJ2aWNlc3xlbnwwfHwwfHx8MA%3D%3D) center/cover no-repeat;
}

.blog-hero h1 {
  font-size: 36px;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/**LAYOUT**/
.blog-container {
  display: flex;
  padding: 50px;
  gap: 30px;
}

/**POSTS**/
.posts {
  flex: 3;
}

.post {
  margin-bottom: 30px;
  border: 1px solid #eee;
  padding: 15px;
}

.post img {
  width: 100%;
}

.post h2 {
  margin: 15px 0;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

.post button {
  padding: 8px 15px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

/**SIDEBAR**/
.sidebar {
  flex: 1;
}

.sidebar h3 {
  margin-bottom: 10px;
}

.sidebar ul {
  list-style: none;
  margin-bottom: 20px;
}

.sidebar li {
  margin: 8px 0;
}

/**FOOTER**/
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}

/**RESPONSIVE**/
@media (max-width: 900px) {
  .blog-container {
    flex-direction: column;
  }
}





