
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  text-align: left;
  padding: 20px;
}
.post-container {
  max-width: 800px;
  margin: 0 auto;
}
.post-title {
  font-size: 2em;
  margin-bottom: 15px;
}
.post-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}
.post-content p {
  font-size: 1.1em;
  margin-bottom: 15px;
}
.post-meta {
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 20px;
}
.back-link {
  display: block;
  margin-top: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.back-link:hover {
  color: #ccc;
}
a {
    color: white;
}
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.social-links a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}
.social-links a:hover {
  color: #ccc;
}
      #myBtn {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: white;
    color: black;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: black;
    color: white;
  }
.views-blog {
  display: inline-flex;

}