*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --maroon: #651424;          /*Base color... uses triadic color scheme*/
    --mutedred: #BB6475;
    --whitered: #f5edeb;
    --winered: #3C162B;
    --olivegreen: #666214;
    --mintgreen: #A1E6C4;
    --darkgreen: #146622;       /*Complementary color to maroon*/    
    --darkblue: #144F66;
    --lightblue: #A1D2E6;
    --black: #242322;
}
html {
    scroll-behavior: smooth;
}
a {
    color: var(--darkgreen);
    font-weight: bold;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Limelight", sans-serif;
}
body {
    visibility: hidden;
}
.body {
    display: flex;
    flex-direction: row-reverse;
    font-family: "Montserrat", sans-serif;
    font-size: 19.75px;
    color: var(--black);
    /* visibility: hidden; */
    /* background: var(--black); */
    background: var(--winered);
    overscroll-behavior: none;
}
.article-body {
    background: var(--whitered);
}
.col1,.col2 {
    height: 100vh;
}
.col1 {
    width: 20vw;
    border-top-left-radius: 20%;
    border-bottom-left-radius: 20%;
    background: var(--maroon);
    position: fixed;
    right: 0;
    z-index: 2;
    font-family: "Limelight", sans-serif;
}
.nav, .pages {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.nav {
    height: 100vh;
    padding: 60px 0;
}
#logo img:hover {
    opacity: 90%;
    cursor: pointer;
}
#hamburger {
    visibility: hidden;
}
.pages {
    grid-gap: 40px;
    font-size: 25px;
    letter-spacing: 2px;
}
.pages a {
    color: white;
    transition: 1s;
}
.pages a:hover {
    font-size: 30px;
    letter-spacing: 3px;
    cursor: pointer;
}
.subscribe-button {
    color: var(--black);
    font-size: 20px;
    background: var(--mintgreen);
    border-radius: 16px;
    border: none;
    letter-spacing: 2px;
    padding: 15px;
    font-family: "Limelight", sans-serif;
}
.subscribe-button:hover {
    background: var(--lightblue);
    cursor: pointer;
}
.mobile-nav {
    position: fixed;
    visibility: hidden;
}
.col2 {
    color: black;
    width: 100vw;
}

/*nav pages*/
.navlink-page {
    width: 100vw;
    padding: 25vh 2.5vw;
    display: flex;
    flex-direction: column;
    grid-gap: 50px;
}
.annoucement-bar {
    width: 100vw;
    background: var(--lightblue);
    z-index: 1;
    padding: 10px;
    position: fixed;
}
.annoucement-bar p {
    text-align: center;
    width: 80vw;
}
.navlink-page-header {
    font-size: 62.5px;
    letter-spacing: 1px;
}
.navlink-page-content {
    width: 70vw;
    display: flex;
    flex-direction: column;
    grid-gap: 100px;
}
.navlink-page-container {
    display: flex;
    flex-direction: column;
    grid-gap: 25px;
}
.navlink-page-subheader {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    letter-spacing: 12.5px;
    text-transform: uppercase;
}
.navlink-page-articles {
    /* display: flex;
    grid-gap: 12.5px; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12.5px;
    row-gap: 25px;
}
.navlink-page-article {
    color: var(--black);
    background: rgba(250,250,250,0.75);
    padding: 10px;
}
.navlink-page-article:hover {
    cursor: pointer;
    opacity: 0.8;
}
.navlink-page-article-img {
    display: block;
    width: 300px;
    height: auto;
    margin: auto;
}
.navlink-page-article-title {
    margin-top: 12.5px;
}
.navlink-page-article-title, .navlink-page-article-date {
    width: 300px;
    font-size: 18px;
    text-align: center;
    display: block;
    margin: 10px auto;
}
.navlink-page-article-date {
    font-weight: normal;
    font-size: 16px;
}

/*article pages*/

.article-page {
    width: 100vw;
    padding: 25vh 3.75vw;
}
.article-info {
    display: flex;
    grid-gap: 37.5px;
    /* border: 1px solid blue; */
    align-items: center;
}
.article-author {
    font-style: italic;
}
.article-author address a {
    color: black;
    font-weight: normal;
}
.article-title {
    margin-top: 37.5px;
    width: 50vw;
    font-size: 62.5px;
    color: #242322;
    letter-spacing: 1px;
    text-shadow: 1.5px 1.5px var(--mutedred);
}
.article-category {
    border-radius: 16px;
    background: var(--mutedred);
    padding: 12.5px;
}
.article-category:hover {
    background: red;
}
.article-category a {
    color: white;
    font-weight: normal;
}
/* .article-category a {
    color: white;
} */
.article-subtitle {
    width: 62.5vw;
    font-size: 28px;
    margin-top: 25px;
    letter-spacing: 2px;
    color: #474443;
}
.article-lead-image {
    margin-top: 62.5px;
    width: 62.5vw;
}
.article-lead-image img{
    width: 700px;
    height: auto;
    border-radius: 25px;
}
.article-lead-image-credit {
    margin-top: 5px;
    font-size: 14px;
}
.article-section {
    margin-top: 50px;
}
.article-section h3 {
    margin: 75px 0 25px 0;
}
.article-section p {
    width: 62.5vw;
    line-height: 175%;
}
.article-main ul {
    list-style-position: inside;
    margin: 25px 0;
    padding-left: 25px;
}
.article-section p:not(:first-child) {
    margin-top: 25px;
}
.article-takeaways div {
    /* background: var(--mutedred); */
    background: var(--winered);
    color: white;
    padding: 12.5px;
    width: 62.5vw;
    border-bottom-right-radius: 50%;
    
}
.article-takeaways li:not(:first-child) {
    margin-top: 10px;
}
.article-takeaways-header {
    font-size: 25px;
}
.article-takeaways-list {
    list-style-position: inside;
    padding-top: 12.5px;
}
.article-og-publication-date {
    font-weight: italic;
    margin-top: 50px;
    color: #474443;
    font-size: 17px;
}
.article-content-links {
    margin-top: 12.5px;
    line-height: 175%;
    list-style-position: inside;
    list-style-type: none;
}
.article-section-image {
    width: 62.5vw;
    margin: 50px 0;
}
.article-section-image figcaption {
    display: block;
    margin: auto;
    width: 600px;
    text-align: center;
    padding-top: 12.5px;
    font-size: 17px;
}
.article-section-tall-image img, .article-section-iphone13-screenshot img, .article-section-wide-image img {
    display: block;
    margin: auto;
    width: 600px;
    height: auto;
}
.author-bio {
    display: flex;
    width: 62.5vw;
    align-items: center;
    margin-top: 25px;
    grid-gap: 12.5px;
}
.author-bio img {
    width: 200px;
    height: auto;
}
.author-bio-text {
    font-size: 18px;
    line-height: 125%;
}
.footer {
    background: var(--winered);
    width: 100vw;
    padding: 5vh 2.5vw;
}
.footer-content {
    width: 70vw;
}
.footer-info {
    color: white;
}
.footer-info p {
    font-size: 16px;
    font-weight: bold;
}
.footer-links {
    margin-top: 12.5px;
    display: flex;
    grid-gap: 12.5px;
}
.footer-links a {
    color: white;
    font-weight: normal;
    font-size: 14px;
}

/* Subscribe, Legal, and Contact page */
.subscribe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80vw;
    height: 100vh;
}
.subscribe-box {
    border: 4px solid black;
    border-radius: 25px;
    padding: 25px;
    width: 50%;
}
.subscribe-box p {
    margin-top: 12.5px;
}
.convertkit-code {
    margin-top: 25px;
}


@media only screen and (max-width: 576px) {
    .body {
        flex-direction: column;
    }
    .col1 {
        background: rgba(0,0,0,0);
        width: 100vw;
        height: 15vh;
        border-radius: 0%;
        position: fixed;
        top: 0;
    }
    .nav {
        flex-direction: row;
        height: 15vh;
        padding: 0 5vw;
        transition: 0.75s;
    }
    .nav-scrolled {
        transition: 0.75s;
        background: var(--maroon);
        border-bottom-left-radius: 12.5%;
        border-bottom-right-radius: 12.5%;
    }
    #logo img {
        width: 100px;
        height: 100px;
    }
    #hamburger {
        visibility: visible;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        grid-gap: 5px;
    }
    #hamburger span {
        height: 5px;
        width: 40px;
        background: white;
        border-radius: 10px;
        box-shadow: -2px 2px 8px #000;
    }
    .pages {
        display: none;
    }
    .active {
        display: flex;
        flex-direction: column;
        visibility: visible;
        text-align: center;
    }
    .active a {
        width: 100vw;
        background: var(--maroon);
        color: white;
        padding: 5px;
    }
    .subscribe-button {
        font-size: 15px;
        padding: 7.5px;
    }
    .col2 {
        height: 100vh;
        width: 100vw;
    }
    .footer-content {
        margin: auto;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .navlink-page {
        padding: 25vh 5vw;
    }
    .navlink-page-header {
        font-size: 50px;
    }
    .navlink-page-container {
        width: 90vw;
        align-items: center;
        justify-content: center;
    }
    .navlink-page-articles {
        grid-template-columns: repeat(1, 1fr);
    }
    .article-page {
        width: 100vw;
    }
    .article-info {
        font-size: 16px;
        grid-gap: 18.75px;
    }
    .article-title {
        width: 92.5vw;
        font-size: 37.5px;
    }
    .article-subtitle {
        width: 92.5vw;
        font-size: 20px;
    }
    .article-lead-image {
        width: 92.5vw;
    }
    .article-lead-image img {
        display: block;
        margin: auto;
        width: 350px;
    }
    .article-lead-image-credit {
        text-align: center;
    }
    .article-takeaways div {
        width: 92.5vw;
        border-radius: 25px;
    }
    .article-section p {
        width: 92.5vw;
    }
    .article-section-image {
        width: 92.5vw;
    }
    .article-section-tall-image img, .article-section-iphone13-screenshot img, .article-section-wide-image img {
        width: 300px;
    }
    .article-section-image figcaption {
        width: 300px;
    }
    .author-bio {
        flex-direction: column;
        width: 92.5vw;
        grid-gap: 25px;
        margin-top: 37.5px;
    }
    .author-bio img {
        width: 300px;
    }
    .author-bio-text {
        width: 300px;
        text-align: justify;
        line-height: 150%;
    }
    .subscribe-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
    }
    .subscribe-box {
        border: 4px solid black;
        border-radius: 25px;
        padding: 25px;
        width: 80%;
    }
}