@font-face {
  font-family: "Vazirmatn";
  src: url("./Vazirmatn.ttf") format("truetype");
}


* {
  margin: 0;
  padding: 0;
}

h2,
p,
a {
  font-family: "Vazirmatn";
  text-align: right;
}

a {
  text-decoration: none;
}

.blog-posts-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
 

}

.post-link {
  margin: 20px 20px 20px 20px;
}

.post-wrap1,.post-wrap2,.post-wrap3 {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 400px;
  background-color: #fff;
  box-shadow: 0px 2px 20px rgba(0,0,0,.25);
  transition: all .25s;
  top: 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
}

.post-wrap1:hover {
  top: 2px;
  box-shadow: 0px 0px 10px rgba(255, 123, 0, 0.25);
}

.post-wrap2:hover {
  top: 2px;
  box-shadow: 0px 0px 10px rgba(46, 158, 2, 0.25);
}

.post-wrap3:hover {
  top: 2px;
  box-shadow: 0px 0px 10px rgba(0, 4, 255, 0.25);
}

.post-image {
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


#post-image-d {
  background-color: #ff9100;
}

#post-image-h1 {
  background-color: #267c2a;
}

#post-image-h2 {
  background-color: #272bff;
}

.post-body {
  width: 300px;
  padding: 10px;
  margin: 0 auto;

}

.post-body-primary {
  margin: 40px 0 40px 0;
}

.post-meta {
  color: #7B7B7B;
}

.post-meta b {
  font-weight: 500;
}

.post-title {
  color: #444;
  font-size: 20px;
  padding: 5px 0 10px 0;
}

.post-text {
  color: #7B7B7B;
  text-align: right;
}

.post-body-secondary {
  border-top: 1px solid #ECECEC;
}

.post-category {
  color: #7B7B7B;
  padding: 15px 0 10px 0;
}

/* Button Styling */
.button-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0 20px 0;
}

.button {
  position: relative;
  background-color: #3089DB;
  padding: 20px 60px 20px 60px;
  box-shadow: 0px 6px 20px rgba(48,137,219,.60);
  transition: all .25s;
  top: 0;  
  border-radius: 10px;
  
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.button:hover {
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(48,137,219,.60);
  top: 2px;
}