nav {
  background-color: rgb(223, 222, 224);
  display: flex;
  height: 7vh;
}

.nav-left {
  display: flex;
  padding-left: 100px;
  align-items: center;
  flex: 50%;

}

.nav-left li {
  display: inline;
}

.nav-left ul {
  display: flex;

}

.nav-left ul li a {
  color: black;
  text-decoration: none;
  padding: 15px;
}

.nav-right {

  display: flex;
  flex: 50%;
  align-items: center;

  justify-content: flex-end;
  padding-right: 100px;
}

.nav-right a {
  background-color: black;
  color: white;
  padding: 8px 25px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

body {
  margin: 0;
  background-color: grey;
  font-family: 'Poppins', sans-serif;
}


section {
  padding: 4rem;
  width: 90%;
  margin: auto;
}



.section__blog-detail {
  display: flex;
  justify-content: center;
  align-items: start;
}

.blog__detail-container {
  width: 95%;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 2rem 3.5rem;
}

.blog__detail-container h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.banner {
  display: flex;
  width: 100%;
  height: 20rem;
  margin-bottom: 5rem;
}

.banner .blog__detail-image {
  flex: 60%;
  height: 100%;
  margin: auto;
}

.banner .blog__detail-image img {
  width: 100%;
  height: 100%;
}

.banner .info {
  flex: 40%;
  margin-left: 5.5rem;
  display: flex;
  flex-direction: column;
}

.banner .info .duration {
  margin-bottom: 1.5rem;
}

.info .duration h4,
.info .tech h4 {
  margin-bottom: 1rem;
}

.info .tech .stacks {
  display: flex;
  font-size: 1rem;
}

.tech .stacks .right {
  margin-left: 1.5rem;
}

.content p {
  text-align: justify;
}