.entry-header {
  height: 400px;
  width: 100%;
  position: relative;
}
.post-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.entry-title {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c3039;
  background: linear-gradient(0deg, #1c3039 0%, rgba(28, 48, 57, 0.798757) 100%);
  color: #fff;
  font-size: 72px; /*120px;*/
  font-style: italic;
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}
.page-line {
  width: 100%;
  height: 7px;
  background: #ffd42d;
  box-shadow: 0px 0px 15px #000;
}
@media (max-width: 1200px) {
  .entry-header {
    height: 350px;
  }
  .entry-title {
    font-size: 110px;
  }
}
@media (max-width: 768px) {
  .entry-header {
    height: 220px;
  }
  .entry-title {
    font-size: 40px;
  }
}



ol.theme-ul {
  list-style-type: none;
  counter-reset: theme-ul;
  margin-bottom: 1.5em;
}
ol.theme-ul li {
  margin-bottom: 0.75em;
}
ol.theme-ul li::before {
  content: "[" counter(theme-ul) "]";
  counter-increment: theme-ul;
  color: #1c3039;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 0.5em;
}

ul.theme-ul {
  list-style-type: none;
}
ul.theme-ul li {
  margin-bottom: 0.75em;
}
ul.theme-ul li::before {
  content: "\2713";
  color: #ffd42d;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 0.5em;
  text-shadow: 1px 1px 0px #999;
}
