@font-face {
  font-family: "Pangolin";
  src: url("/static/fonts/Pangolin/Pangolin-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* h2,
h3,
h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
} */

ul {
  margin-left: 1rem;
}

.header {
  height: 50px;
  background-color: #1b5b42;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header_link {
  color: #dbdada;
  text-decoration: none;
  font-family: "Pangolin";
  font-size: 1.2em;
}

.header_link:hover {
  cursor: pointer;
  color: #fff;
}

.header_wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 30px;
  min-height: calc(100vh - 100px);
  color: #242424;
}

.hello_block {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hello_block h2 {
  margin-bottom: 20px;
}

.tools_block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tools_icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tools_icons img {
  width: 50px;
}

.posts_block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.posts_block h2 {
  margin-bottom: 20px;
}

.posts_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.1em;
}

.posts_list a {
  color: #242424;
  text-decoration: none;
}

.posts_list a:hover {
  text-decoration: underline;
}

.posts_list li {
  list-style-type: none;
}

.next_page,
.prev_page {
  color: #fff;
  background-color: #1b5b42;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
}

.chimp_block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.chimp {
  width: 350px;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.article {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.article_wrapper {
  margin-top: 30px;
  width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post_content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background-color: #1b5b42;
  padding: 10px;
  color: #dbdada;
}
