body {
  font-family: 'Arimo', sans-serif;
  color: #333;
}

h1, h2, h3, h4 {
  font-family: 'Sancreek', cursive;
}

h1 {
  font-size: 34px;
  margin-bottom: 20px;
}
h2, h3, h4 {
  font-size: 22px;
}
p {
  line-height: 1.5;
  margin-bottom: 15px;
}
p:last-of-type {
  margin-bottom: 0;
}
p + h2,
p + h3,
p + h4 {
  margin-top: 15px;
}

a {
  text-decoration: none;
  color: #ffd207;
}
a:hover {
  color: #000;
}
h1 a,
h2 a,
h3 a,
h4 a {
  color: inherit; /*body-ból*/
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: #ffd207;
}

main ul {
  margin: 10px 0;
}

main ul li {
  line-height: 1.3;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

main ul li::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  display: block;
  top: 10px;
  left: 0;
  background: #ffd207;
}
