@media screen and (max-width: 480px) {
    .home .latest_article {
        aspect-ratio: 1 / 1;
    }
    .home .column {
        background-size: 80%;
        height: 50%;
    }
    .home .column.imagecolumn:nth-child(1) {
        background-position: 48px 12px;
    }
     .home .column.imagecolumn:nth-child(2) {
        background-position: calc(100% - 48px) calc(100% - 12px);
    }
   
    .home .column.imagecolumn .article-image {
        height: 66%;
        width: 33%;
        align-self: center;
    }
    .home .column.imagecolumn:nth-child(1) .article-image {
       margin-left: 33%;
   }

    .home .column.imagecolumn:nth-child(2) .article-image {
       margin-left: -33%;
    }
   
    .home .column.imagecolumn header {
       margin-right: 0;
        margin-left: 0;
        text-align: center;
    }
    .home .imagecolumn header h1 {
      font-size: 1.2em;
      margin: 0;
    }
  
    .textcolumn {
      background-image: none;
    }
    .article_id-header {
      bottom: -22px;
      border: .1px solid var(--dark-purple);
    }
    .home .article_id-header {
      border: none;
    }
 
}

@media screen and (max-width: 360px) { 
    .home .column.imagecolumn header h1 {
        font-size: 1em;
    }
}

@media screen and (min-width: 900px) {
  .content_block .stickyarticle,
  .articlecontent {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
  }
  .content_block {
    gap: 2em;
  }
}

@media screen and (min-width: 1280px) {
  .Container {
     width: 1280px;
     margin: 0 auto;
  }
  .contentheader {
    margin-left: 0;
    margin-right: 0;
  }
  .articlecontent {
    width: 75%;
  }
  .article_pagination a {
    font-size: 1.1em;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #1B3240;
    color: #fff;
  }
  header,
  footer {
    background-color: #1B3240;
  }
  a {
    color: #ccc;
  }
  header[role="banner"] {
    border-bottom: 1px solid #fff;
  }
  footer {
    border-top: 1px solid #fff;
  }
  .textcolumn {
    background-color: #1B3240;
 }
header.design h1::before {
  background-image: url("/css/icons/design-light.svg");
}
header.retrokid h1::before {
  background-image: url("/css/icons/OB-light.svg");
}
header.vinyl h1::before {
  background-image: url("/css/icons/vinyl-light.svg");
}
header.default h1::before {
  background-image: url("/css/icons/home-light.svg");
}
body.search header.default h1::before {
  background-image: url("/css/icons/searchbutton-light.svg");
}
header.portfolio h1::before {
  background-image: url("/css/icons/portfolio-light.svg");
}
.article_context p {
  color: #ccc;
}
.search input[type="submit"] {
    background-image: url("/css/icons/searchbutton-light.svg");
}