/*** base ***/

* {
  box-sizing: border-box;
}

::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Asap",sans-serif;
  font-size: 18px;
  background-color: #181818;
  color: #c0c0c0;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

body > main {
  margin: 0 auto;
  max-width: 800px;
}

body > header {
  margin: 0 auto;
  max-width: 800px;
}

body > footer {
  margin: 0 auto;
  max-width: 800px;
}

a {
  color: #de6e2a;
  text-decoration: none;
}

h1, h2 {
  color: #e0e0e0;
  font-family: "Oswald",sans-serif;
  font-weight: 300;
  letter-spacing: 0.7px;
}

h1 {
  font-size: 1.9rem;
}

h3, h4, h5 {
  color: #e0e0e0;
  font-weight: 700;
}

ul {
  margin: 0;
  list-style-type: circle;
  padding-inline-start: 20px;
}

li {
  margin: 4px 0;
}

/*** header ***/

header {

  text-align: center;
  color: #e0e0e0;

  .header-box {
    margin: 45px 0 20px 0;
  }

  .title {
    font-family: "Oswald",sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.7px;
    text-decoration: none;
    margin: 0 10px;
  }

  .tagline {
    margin: 5px 0 0 0;
  }

  a {
    /* color: inherit; */
  }

}

/*** footer ***/

footer {

  .footer-box {
    margin: 60px 15px 120px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-list {
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .footer-right {
    text-align: right;
  }

  .footer-right a {
    color: inherit;
  }

  .footer-right .social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
    font-size: 1.8rem;
  }

  .footer-right > a i {
    margin-right: 0.3em;
  }

}

/*** home ***/

.home {

  .home-top {
    margin-top: 40px;
  }

  .store-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;

    img {
      height: 50px;
      width: auto;
    }
  }

  .tease-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 1.0rem;
    margin-top: 15px;
    color: #f0f0f0;
  }

  .post-list {
  }

  .post-list > div {
    margin-top: 70px;
  }

  .post-item p {
    margin: 10px 12px;
    max-width: 580px;
    line-height: 1.3;
  }

  .post-item ul {
    margin: 10px 12px;
  }

  .meta-block {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .post-meta {
    color: #fafafa;
    background-color: #383838;
    font-size: 1.0rem;
    font-weight: 500;
    padding: 9px;
    border-radius: 3px;
  }

}

@media (max-width: 415px) {
  .home {
    .store-row {
      flex-direction: column;
      gap: 10px;
      img {
        height: auto;
        width: 168px;
      }
    }
  }
  footer {
    .footer-box {
      flex-direction: column;
      gap: 20px;
    }
  }
}

/*** page ***/

article.page {

  margin: 0 15px;

  h1 {
    text-align: center;
    margin: 0 0 20px 0;
  }

  h3 {
    font-size: 1.1rem;
    font-weight: 700;
  }

  p {
    margin: 10px 0;
    max-width: 580px;
    line-height: 1.4;
  }

}

/*** post - not public ***/

article.post {

  margin: 0 15px;

}

/*** error page ***/

.error-page {

  margin: 10px auto;
  max-width: 600px;
  text-align: center;

  h1 {
    font-size: 4em;
    margin: 30px 0;
    line-height: 1;
  }

  .unhappy {
    margin-left: 10px;
    font-weight: 400;
  }

}

/*** extras ***/

.youtube-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 15px;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@font-face {
  font-family: 'Oswald';
  font-weight: 300;
  font-style: normal;
  src:  url('/assets/fonts/Oswald-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Asap';
  font-weight: 400;
  font-style: normal;
  src:  url('/assets/fonts/Asap-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Asap';
  font-weight: 700;
  font-style: normal;
  src:  url('/assets/fonts/Asap-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Asap';
  font-weight: 400;
  font-style: italic;
  src:  url('/assets/fonts/Asap-Italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Asap';
  font-weight: 700;
  font-style: italic;
  src:  url('/assets/fonts/Asap-BoldItalic.woff2') format('woff2');
}
