@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");
/*********************
BREAKPOINTS
*********************/
.site-width {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.full-width {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1400px) {
  .full-width {
    padding: 0 4rem;
  }
}

.content-width {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1 {
  font-size: 2rem;
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}
@media (min-width: 850px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1400px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 1.75rem;
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}
@media (min-width: 850px) {
  h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1400px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}
@media (min-width: 850px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: 1.25rem;
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}
@media (min-width: 850px) {
  h4 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1400px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 1.125rem;
}
@media (min-width: 850px) {
  h5 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  h5 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1400px) {
  h5 {
    font-size: 1.5rem;
  }
}

body {
  margin: 0;
  background-color: #212121;
  font-family: system-ui, Arial;
  color: #ffffff;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}
@media (min-width: 850px) {
  body {
    font-size: 1.125rem;
  }
}

a {
  color: #ffffff;
  text-decoration: underline;
}
a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
@media (min-width: 1400px) {
  .site-header {
    padding: 2rem 4rem;
  }
}
.site-header .logo {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.site-header a {
  text-decoration: none;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .site-header a {
    font-size: 1.3rem;
  }
}

.site-footer {
  background-color: #121212;
  padding: 1rem;
  gap: 20vh;
  display: grid;
}
@media (min-width: 1400px) {
  .site-footer {
    padding: 2rem 4rem;
  }
}
.site-footer .site-name {
  text-align: center;
  font-size: 1.3rem;
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media (min-width: 850px) {
  .site-footer .site-name {
    text-align: left;
  }
}
.site-footer .footer-content {
  text-align: center;
}
@media (min-width: 850px) {
  .site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
}
.hero {
  text-align: center;
  margin: 9rem auto;
}
@media (min-width: 850px) {
  .hero {
    margin: 6rem auto 8rem auto;
  }
}

.post-list {
  display: grid;
  gap: 20px;
  margin: 4rem auto;
}
@media (min-width: 850px) {
  .post-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.post-list li {
  list-style: none;
}
.post-list .thumb {
  max-width: 100%;
  border-radius: 8px;
}
.post-list a {
  text-decoration: none;
  transition: 0.3s all;
}
.post-list a img {
  transform: rotate(0deg);
  transition: 0.3s all;
}
.post-list a:hover {
  opacity: 0.85;
}
.post-list a:hover img {
  transform: rotate(1deg);
}

.post .post-hero {
  text-align: center;
  margin: 4rem auto;
}
.post img {
  max-width: 100%;
  border-radius: 8px;
}

.text-content {
  margin: 2rem auto 6rem auto;
}
.text-content p {
  margin: 0.5rem auto 1rem auto;
}
.text-content h1, .text-content h2, .text-content h3, .text-content h4, .text-content h5 {
  margin-top: 2rem;
}

.left {
  text-align: left;
}

.content-page-wrapper {
  min-height: 80vh;
}

/*# sourceMappingURL=styles.css.map */
