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

header .header_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 20px;
}
header .header_contents .header_title:hover {
  color: #bbb;
}
header .header_contents .header_title h1 {
  font-size: 1.4rem;
  font-weight: 600;
  -webkit-transition: 0.2s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
header .header_contents .header_links .links .link {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header .header_contents .header_links .links .link:hover {
  -webkit-transform: scale(1.2);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
}
footer .footer_contents .footer_links .links .link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
footer .footer_contents .footer_links .links .link:hover {
  -webkit-transform: scale(1.1);
          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(6, 1fr);
  grid-gap: 20px;
}
@media screen and (max-width: 800px) {
  main.home .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
main.home .posts .post .post_image {
  aspect-ratio: 1;
  width: 100%;
  background-color: #eee;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
main.home .posts .post .post_image .post_thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main.home .posts .post .post_title {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}
@media screen and (max-width: 800px) {
  main.home .posts .post:not(:first-child) {
    aspect-ratio: 1;
  }
}
main.home .posts .post:hover .post_image {
  background-color: #ddd;
}
main.home .posts .post .post_type_title {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  main.home .posts .post .post_type_title {
    font-size: 1.2rem;
  }
}
main.archive .archive_header {
  padding: 40px 0;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  main.archive .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
main.archive .posts .post_header {
  padding: 40px 0;
  font-size: 2rem;
  text-align: center;
}
main.archive .posts .post:first-child {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 1;
  grid-row-end: 1;
}
@media screen and (max-width: 800px) {
  main.archive .posts .post:first-child {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
  }
}
main.archive .posts .post .post_image {
  aspect-ratio: 1;
}
main.single {
  margin: auto;
  max-width: 100%;
}
main.single .post_header {
  padding: 40px 0;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
main.single .post_footer {
  padding: 40px 0;
}
main.single.single_app .post_app {
  display: grid;
  grid-gap: 20px;
}
main.single.single_app .post_app .app {
  position: relative;
  padding: 0 20px;
  width: 100%;
  background-color: #fafafa;
}
main.single.single_app .post_app .app_settings {
  display: grid;
  grid-gap: 0.5rem;
  margin: auto;
  padding: 1rem;
  width: calc(100% - 40px);
  max-width: 800px;
  background-color: #eee;
  border-radius: 1rem;
}
main.single.single_app .post_app .app_settings .app_setting {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
}
main.single.single_app .post_app .app_settings .app_setting .radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
}
main.single.single_app .post_app .app_settings .app_setting input[type=text] {
  padding: 0 0.5rem;
  width: 100%;
  height: 3rem;
  background-color: #fff;
}
main.single.single_app .post_app .app_settings .app_setting input[type=radio] {
  display: none;
}
main.single.single_app .post_app .app_settings .app_setting input[type=color] {
  width: 100%;
  height: 3rem;
  border-radius: 0;
}
main.single.single_app .post_app .app_settings .app_setting select {
  padding: 0 0.5rem;
  width: 100%;
  height: 3rem;
  background-color: #fff;
}
main.single.single_app .post_app .app_settings .app_setting label {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
main.single.single_app .post_app .app_settings .app_setting label:has(input[type=radio]) {
  padding: 0 1rem;
  height: 3rem;
  background-color: #fff;
  border-radius: 3rem;
  line-height: 3rem;
}
main.single.single_app .post_app .app_settings .app_setting label:has(input[type=radio]):hover {
  background-color: #fafafa;
}
main.single.single_app .post_app .app_settings .app_setting label:has(input[type=radio]:checked) {
  background-color: #ddd;
}
main.single.single_app #app {
  position: relative;
}
main.single.single_app #enterFullscreenBtn,
main.single.single_app #exitFullscreenBtn {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3rem;
  background-color: #eee;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  main.single.single_app #enterFullscreenBtn,
  main.single.single_app #exitFullscreenBtn {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */