.heritage-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;

  /* Dark overlay */
  background:rgba(0,0,0,0.8);

  /* Scroll entire modal */
  overflow-y:auto;
}

/* Full-page manuscript style */
.heritage-body{
  width:80%;
  margin:40px auto;
  padding:40px;

  background:linear-gradient(135deg, #f8f1d4, #f2e2b3);

  /* REMOVE box look */
  border:none;
  border-radius:0;
  box-shadow:none;

  font-family:Georgia, serif;
  color:#3b2f1d;
}

/* Title */
.heritage-body h2{
  text-align:center;
  font-size:30px;
  margin-bottom:25px;
  border-bottom:2px solid #8b6f3d;
  padding-bottom:10px;
}

/* Text */
.heritage-body p{
  line-height:1.9;
  font-size:17px;
  text-align:justify;
  margin-bottom:18px;
}

/* Close button */
.close-btn{
  position:fixed;
  top:20px;
  right:30px;
  font-size:30px;
  color:#fff;
  cursor:pointer;
  z-index:10000;
}

/*for bold in number list*/
.engraved-list {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
}

.engraved-list li {
  counter-increment: item;
  margin-bottom: 15px;

  /* Bold text */
  font-weight: bold;

  /* Heritage font feel */
  font-family: "Georgia", serif;

  /* Engraved text effect */
  color: #3b2f1d;
  text-shadow: 
    1px 1px 0 #e6d3a3,
    -1px -1px 0 #8b6f3d;
}

.engraved-list li::before {
  content: counter(item) ". ";
  
  /* Bold number */
  font-weight: bold;

  /* Gold tone */
  color: #8b6f3d;

  /* Slightly bigger number */
  font-size: 20px;

  margin-right: 6px;
}