html {
  color: #222;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
html a {
  transition: 0.2s;
}
html img {
  max-width: 100%;
  vertical-align: middle;
}

header .header_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 20px;
}
header .header_contents .header_title:hover {
  color: #bbb;
}
header .header_contents .header_title h1 {
  font-size: 6rem;
  font-weight: 600;
  transition: 0.2s;
}
@media screen and (max-width: 1000px) {
  header .header_contents .header_title h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 800px) {
  header .header_contents .header_title h1 {
    font-size: 1.4rem;
  }
}
header .header_contents .header_links .links {
  display: flex;
  gap: 1rem;
}
header .header_contents .header_links .links .link {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  transition: 0.2s;
}
header .header_contents .header_links .links .link:hover {
  transform: scale(1.2);
}
header .header_contents .header_links .links .link .link_image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .footer_contents {
  padding: 2rem 20px;
  text-align: right;
}
footer .footer_contents .footer_links {
  margin-bottom: 2rem;
}
footer .footer_contents .footer_links .links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
footer .footer_contents .footer_links .links .link {
  transition: 0.2s;
}
footer .footer_contents .footer_links .links .link:hover {
  transform: scale(1.1);
}
footer .footer_contents .footer_links .links .link .link_image {
  width: 1.4rem;
  height: 1.4rem;
}
footer .footer_contents .footer_links .links .link .link_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer_contents .footer_copyright {
  font-size: 0.8rem;
}

main.home {
  padding: 0 20px;
}
main.home .posts {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 20px;
}
@media screen and (max-width: 1200px) {
  main.home .posts {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 800px) {
  main.home .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
main.home .posts .post:first-child {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
}
@media screen and (max-width: 800px) {
  main.home .posts .post:first-child {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 4;
  }
}
main.home .posts .post:nth-child(2) {
  grid-column-start: 4;
  grid-column-end: 6;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media screen and (max-width: 800px) {
  main.home .posts .post:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 6;
  }
}
main.home .posts .post:hover {
  padding: 10px;
}
main.home .posts .post .post_image {
  aspect-ratio: 1;
  width: 100%;
}
main.home .posts .post .post_image .post_thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #ddd;
}
main.single {
  margin: auto;
  padding: 0 20px;
  width: 800px;
  max-width: 100%;
}
main.single .post_header {
  padding: 40px 0;
  font-size: 2rem;
  text-align: center;
}
main.single .post_content > * + * {
  margin-top: 1rem;
}
main.single .post_content img {
  border: 1px solid #ddd;
}
main.single .post_footer {
  padding: 40px 0;
}/*# sourceMappingURL=common.css.map */