/* DISPLAY TYPEFACE */

@font-face {
    font-family: "Display";
    src: url("../fonts/albertusnova_bold.woff") format("woff");
  }
  
  /* PAGE BACKGROUND FOR OVERSCROLL */
  
  html {
    background: #000000;
  }
  
  /* RESET */
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
  
    background: #ffffff;
    color: #000000;
  
    font-family: "courier new", Courier, monospace;
    font-size: 16px;
    line-height: 1.2;
  
    overscroll-behavior-y: none;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* BODY HYPERLINK STYLE */
  
  .intro a,
  .post-text a {
    color: #000000;
    font-family: Courier, monospace;
    /* text-decoration: underline; */
  }
  
  .intro a:hover,
  .post-text a:hover {
    opacity: 0.7;
  }
  
  /* PAGE */
  
  .page {
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* HEADER */
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    padding: 36px 36px 28px;
  }
  
  .logo {
    width: 170px;
    height: auto;
  
    display: block;
  }
  
  .main-nav {
    display: flex;
    flex-direction: row;
    gap: 48px;
  
    font-family: "courier new", Courier, monospace;
    font-size: 16px;
  }
  
  /* INTRO */
  
  .intro {
    padding: 0 36px 36px;
  
    max-width: 900px;
  
    font-family: "courier new", Courier, monospace;
    font-size: 20px;
    line-height: 1.1;
  }
  
  /* POSTS */
  
  .post {
    margin: 0 36px;
    padding: 10px 0 44px;
  
    border-top: 1px solid #999999;
  }
  
  .date {
    margin-bottom: 4px;
  
    font-family: "Display", sans-serif;
    font-size: 16px;
  
    text-transform: uppercase;
  }
  
  .title {
    margin: 0 0 30px;
  
    font-family: "Display", sans-serif;
    font-size: 26px;
    line-height: 1;
    font-weight: normal;
  }
  
  .post-image {
    width: 78%;
    max-height: min(58.5vw, 526px);
  
    height: auto;
    object-fit: contain;
  
    display: block;
  
    margin-right: auto;
    margin-bottom: 30px;
  }
  
  .post-text {
    width: 78%;
  
    font-family: "courier new", Courier, monospace;
    font-size: 16px;
    line-height: 1.15;
  }
  
  /* FOOTER */
  
  footer {
    width: 100%;
  
    margin-top: 20px;
  
    background: #000000;
    color: #ffffff;
  }
  
  .footer-inner {
    max-width: 900px;
    margin: 0 auto;
  
    padding: 16px 36px 44px;
  }
  
  .footer-nav {
    display: flex;
    justify-content: center;
    gap: 48px;
  
    margin-bottom: 28px;
  
    font-family: "courier new", Courier, monospace;
    font-size: 16px;
  }
  
  .footer-logo {
    width: 100%;
    height: auto;
  
    display: block;
  }
  
  /* MOBILE */
  
  @media (max-width: 700px) {
  
    header {
      align-items: center;
  
      padding: 24px;
    }
  
    .main-nav {
      flex-direction: column;
      gap: 4px;
  
      align-items: flex-start;
    }
  
    .intro {
      padding: 0 24px 28px;
  
      font-size: 20px;
    }
  
    .post {
      margin: 0 24px;
    }
  
    .title {
      font-size: 24px;
    }
  
    .post-image,
    .post-text {
      width: 100%;
    }
  
    .post-image {
      max-height: 75vw;
    }
  
    .footer-inner {
      padding: 16px 24px 36px;
    }
  
    .footer-nav {
      justify-content: space-between;
      gap: 20px;
  
      font-size: 16px;
    }
  
  }