body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /* Remove or change align-items to 'flex-start' */
  align-items: flex-start;
  /* or remove this line */
  font-family: 'Open Sans', Arial, sans-serif;
}

.container {
  text-align: center;
  margin-top: 40px;
  max-width: 40%;
  line-height: 1;

  /* Add margin to the top of the container */
  /* Other styles remain the same */
}

.profile-pic {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.navigation li {
  margin: 20px 0;
}

.navigation a {
  text-decoration: none;
  color: #333;
  font-size: 20px
}

/* Style for the top navigation bar */
.top-nav {
  width: 100%;
  overflow: hidden;
  line-height: 1;
}

/* Style for the list inside the navigation bar */
.top-nav ul {
  list-style-type: none;
  margin: 0;
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  justify-content: center;
  line-height: 1;

  /* Center the links horizontally */
}

/* Style for each list item */
.top-nav li {
  line-height: 1;

  float: left;
}

/* Style for links inside the navigation bar */
.top-nav a {
  line-height: 1;

  display: block;
  color: black;
  /* Change as needed */
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}



.views {
  margin-top: 4px;
  font-size: 12px;
  color: #969696;
}

.blog-title {
  font-size: 24px;
  margin-top: 20px;
}

.blog-posts {
  font-size: 16px;
  color: #969696;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-posts2 {
  font-size: 16px;
  color: #969696;
  margin-top: 5vh;
  margin-bottom: 20px;
}

/* Style for the blog-container of the Markdown content */
.blog-container {
  align-self: flex-start;
  /* Aligns the container to the start of the cross axis */
  text-align: left;
  /* For left-aligned text inside the blog container */
  width: 95%;
  margin-top: 40px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.blog-container img {
  max-width: 100%;
}

footer {
  margin-bottom: 40px;
}

.filters {
  margin-bottom: 20px;
}

.filter-btn {
  padding: 8px 16px;
  background-color: #f1f1f1;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 4px;
}

.filter-btn.active {
  background-color: #4897fe;
  color: white;
}


/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .profile-pic {
    width: 100px;
    height: 100px;
  }

  .blog-container {
    padding: 10px;
  }

  .container {
    max-width: 100%;
    padding: 10px;
  }
}

/* Responsive design for smaller screens */
@media (max-width: 1200px) {
  .container {
    max-width: 80%;
    padding: 10px;
  }
}