html {
	position: relative;
	min-height: 100%;
}

body {
	/* Padding top for navbar */
	padding-top: 56px;
	/* Margin bottom for footer height */
	margin-bottom: 60px;
}

h2{
    margin-top: 3rem;
    font-weight: 300;
}

.related {
    margin-top: 20px;
}

section {
	padding: 150px 0;
}

img {
	max-width: 100%;
}


pre,
code {
	background: #f8f8f8;
	color: #333;
}

pre {
	border-left: 2px solid #ccc;
	padding: 10px;
}

code {
	display: inline-block;
	padding: 0 0.5em;
	line-height: 1.4em;
	border-radius: 3px;
}

table {
	empty-cells: show;
	border: 1px solid #cbcbcb;
	width: 100%;
	font-size: 0.9em;
	margin-bottom: 1rem;
}

thead {
	background-color: #e0e0e0;
	color: #000;
	text-align: left;
	vertical-align: bottom;
}

tr {
	display: table-row;
	vertical-align: inherit;
	border-color: inherit;
}

th,
td {
	padding: 0.5em 1em;
}

h1.title,
h2.title {
	font-size: 2.3rem;
}

blockquote {
	padding: 10px 20px;
	margin: 0 0 20px 20px;
	border-left: 5px solid #eee;
	font-style: italic;
}

/* Navbar */
img.nav-svg-icon {
	width: 1rem;
	height: 1rem;
	padding-bottom: 2px;
}

.nav-link {
	font-size: 0.8em;
}

/* Footer */
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 0.8em;
}

.mini-logo {
	height: 22px;
	padding-bottom: 5px;
}

/* Plugins */
.plugin {
	margin-top: 3rem;
}

.plugin-label {
	font-size: 1em;
	text-transform: uppercase;
}

.plugin ul {
	list-style: none;
	padding: 0 0 0 10px;
}

.bi {
	margin-right: .5rem !important;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #0056a3;
  color: white;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 10px 0;
  gap: 15px;
}

nav li {
  cursor: pointer;
}

.search-icon {
  font-size: 1.2em;
  cursor: pointer;
}

.promo {
  background: #fff;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}

.promo-label {
  font-size: 0.8em;
  color: #888;
}

.articles {
  padding: 5px 5px;
}

.article {
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
  
}
.myPost {
  margin-top: 3rem;
}
.article img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.content h3 {
  margin: 0 0 5px;
  font-size: 1em;
}

.timestamp {
  font-size: 0.8em;
  color: #777;
}

/* Responsive */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .article {
    flex-direction: column;
    align-items: center;
  }

  .article img {
    width: 100%;
    height: auto;
  }

  .content h3 {
    text-align: center;
  }

  .timestamp {
    text-align: center;
  }
}