body {
    margin: 0;
    padding: 0;
    font-family: "Exo", serif;
    font-optical-sizing: auto;
  
}
header{
    background: #f9f9f9;
    position: sticky;
    top: 0;
    width: 100%;
    height: 45px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    color: #000;
    display: flex;
    align-items: center;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.back img{
  width: 29px;
  height: 29px;
  margin-right: 10px;
}

.header-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-container {
    max-width: 800px;
    margin:  0 auto;
}

.skeleton-post {
    max-width: 800px;
    margin:  0 auto;
}

.image-container {
    position: relative;

}

.image-container img {
    width: 100%;
    height: 200px;
}

.overlay-image {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 10px;
    width: 200px;
    height: 40px;
    color: #f9f9f9;
    font-size: 15px;
    display: flex;
    left: -210px;
    align-items: center;
    padding: 0 5px;
    transition: all 0.3s ease-in-out;
}

.image-container:hover .overlay-image {
    left: 0;
} 

.post-content {
    padding: 10px;
}

.post-content img {
    width: 100%;
    height: auto;
}

.post-title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

 .post-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    text-align: justify;

}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5 {
    color: #000;
    font-weight: 500;
    font-size: 20px;

}

.post-meta {
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-top: 10px;

}

.avatar {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    margin-right: 10px;
}

.post-author, .post-views, .post-date, .post-readtime {
  font-size: 0.9rem;
  color: #777;
  margin-right: 5px;
}

.skeleton-imagepost {
    width: 100%;
    height: 200px;
    background: #e6e6e6;
}

.skeleton-titlepost {
    background: #e6e6e6;
    width: 90%;
    height: 20px;
    margin: 10px;
}

.skeleton-contentpost {
    background: #e6e6e6;
    width: 95%;
    height: 20px;
    margin: 10px;
}