:root {
  --padding: 21px;
  --bg-color: #f5f8eb;
  --text-color: #0a643a;
  --accent-color: #0099ff;
}

.header {
  padding: 23px;
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: 3%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  color: black;
  width: 100%;
}

.header h2 {
  font-size: 180%;
  transform: translateX(-5px);

  margin-bottom: 0;
}

.header a {
  color: var(--text-color);
}

.header p {
  font-size: 20px;
}

.header strong {
  display: inline-block;
  transform: translateX(-5px);
  font-size: 130%;
  line-height: 1;
}
.header-title {
  text-align: center;
}
.header-title:after {
  content: "";
  display: block;
  height: 10px;
  margin: 15px auto;
  background: var(--accent-color);
  max-width: 350px;
  transform: skewX(-21deg) translateY(-13px);
  border-radius: 3px;
}

.header h2:after {
  content: "";
  display: block;
  height: 8px;
  margin-top: 15px;
  background: var(--accent-color);
  max-width: 150px;
  transform: skewX(-21deg) translateY(-13px);
  border-radius: 3px;
}

.header ol li {
  font-size: 15px;
}

.block p:empty {
  width: 100px;
  height: 200px;
}

a.menu-link.main-menu-link {
  color: white;
}

