body{
    background:white;
    color:black;
    font-family: 'Be Vietnam Pro', sans-serif;
    margin:0;
    padding:0;
  }

  /* Header */
  header{
    text-align:center;
    padding:18px 0;
    border-bottom:1px solid rgba(152, 7, 35, 0.2);
    margin-bottom:20px;
    background: #8C0101;
    color: white;
  }

    .info {
      background:rgba(152, 7, 35, 0.2);
      padding:15px;
      border-radius:12px;
      margin:20px 0;
    }
    .info p { font-size:14px; }


  .site-title{
    font-size:28px;
    font-weight:800;
  }

  main{
    max-width:900px;
    margin:auto;
    padding:0 20px;
  }

  .back-link{
    display:inline-block;
    margin-bottom:20px;
    color:#ff5a5f;
    text-decoration:none;
    font-weight:bold;
  }
  .back-link:hover{text-decoration:underline;}

  h1{
    font-size:23px;
    margin-bottom:10px;
    font-weight:700;
  }

  p{
    color:black;
    margin-bottom:20px;
    line-height:1.6;
  }

  table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:25px;
  }

  table th, table td{
    padding:12px;
    border:1px solid rgba(152, 7, 35, 0.2);
  }

  table th{
    background:rgba(152, 7, 35, 0.2);
    text-align:left;
  }

  footer{
    margin-top:40px;
    text-align:center;
    font-size:14px;
    background: #8C0101;
    color: white;
    border-top:1px solid rgba(152, 7, 35, 0.2);
    padding:12px 0;
  }

  a {
  color: #8C0101;
  font-weight: bold;
  text-decoration:none;
  }

  strong{
    color: #8C0101;
  }
 
.responsive-img {
  display: block;
  margin: 0 auto;     /* center karega */
  height: auto;
  border-radius: 10px; 
}

/* Mobile */
@media (max-width: 767px) {
  .responsive-img {
    width: 90%;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .responsive-img {
    width: 60%;
  }
}

/* Laptop / Desktop */
@media (min-width: 1024px) {
  .responsive-img {
    width: 55%;
  }
}



.post-meta { color:black; font-size:14px; margin-bottom:10; text-align:center; }
.post-meta a{ 
  color:#8C0101; 
  text-decoration: none;
}