.info {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
    position: relative;
}

.intro {
    width: 90%;
    max-width: 700px;
    background-color: #F0EFED;
    border-radius: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    padding: 0rem 2rem 5rem 2rem;
}

.intro-headline {
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-bio {
    font-weight: 300;
    font-size: 1.625rem;
    text-align: center;
    margin: 0;
        z-index: 10;
}

.intro hr {
    width: 75%;
    background-color: #3D3D3D;
    height: 1px;
    margin: 1rem 0;
}

.intro-buttons {
    width: 100%;
    text-align: left;
    margin-top: 1.5rem;
    z-index: 10;
}

.intro-button {
    padding: 12px 25px;
    outline: none;
    border: none;
    font-size: 1.125rem;
    transition: color 500ms, background-color 425ms;
    border-radius: 10px;
    font-weight: 300;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(61, 61, 61, 0.1);
    box-shadow: rgba(0, 0, 0, 0.05) 2px 2px, rgba(0, 0, 0, 0.05) 4px 4px;
}

.intro-button:hover {
    color: var(--secondary-font-color);
    background-color: var(--primary-color);
    cursor: pointer;
}

.skyline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    height: auto;
    /* z-index: 1; */
    opacity: 1;

    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, rgba(0, 0, 0, 1) 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;

    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

img:not(.site-logo) {
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.homepage-blog-listing {
    margin-top: 2rem;
}

.link-wrap {
    text-decoration: none;
}

/* Hero Area */

.hero-headline {
    width: 100%;
    padding: 1rem 0 1rem 0;
    font-size: 4rem;
    text-align: center;
    margin: 0 auto;
}

.hero-wrapper {
    /* border: 2px solid black; */
    background-color: rgba(53, 89, 123, 0.05);
    border: 2px solid rgba(166, 99, 68, 0.05);
    display: flex;
    position: relative;
    max-width: 1000px;
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 20px;
    transition: all ease 500ms;
}

.hero-wrapper:hover, .hero-wrapper:focus {
    border: 2px solid rgba(53, 89, 123, 0.25);
}

.hero-text-container {
    padding: 1rem;
    height: 100%;
}

.hero-image-container img {
    max-width: 550px;
    max-height: 350px;
}

.hero-text-container h3 {
    font-weight: 500;
}

/* Article Wrappings */
.article-wrapper {
    /* border: 2px solid black; */
    max-width: 1000px;
    margin: 1rem auto;
    padding: 1rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    /* background-color: rgba(166, 99, 68, 0.05); */
    border-bottom: 2px solid rgba(166, 99, 68, 0.25);
}

.article-text-container h2 {
    margin-bottom: 0;
}

.article-text-container h3 {
    font-weight: 400;
    margin: 0 auto;
}

.article-wrapper div {
    /* border: 2px solid darkred; */
}

.article-image-container img {
    max-width: 300px;
    max-height: 250px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-error {
    text-align: center;
    font-size: 1.25rem;
}

.blog-error:not(:first-of-type) {
  font-size: 1rem;
}

.quote-block {
    max-width: 700px;
    margin: 5rem auto 2rem auto;
    padding: 1.5rem 2.5rem 0rem 2.5rem;
    background-color: rgba(244, 241, 236, 0.35); /* softened */
    border-left: 6px solid #888;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    border-radius: 12px;
    font-family: 'Georgia', serif;
    color: #333;
}

.quote-block blockquote {
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
}

.quote-block footer {
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.quote-block .author {
    font-weight: bold;
}

.quote-block .quote-date {
    font-style: italic;
}

/* Animations */
@keyframes h {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes typing {
    from {
        width: 0%;
        opacity: 0;
    }

    to {
        width: 95%;
        opacity: 1;
    }
}

.ghost {
    animation: textFadeIn;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
}

.ghost2 {
    opacity: 0;
    animation: textFadeIn;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

.typewriterFast {
    animation: typing;
    animation-fill-mode: forwards;
    animation-duration: 0.3s;
}

.reverseTypewriter {
    animation: typing;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
}

.typewriter {
    animation: typing;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
}

/* Responsivity Code */

/* 993-1200px */
@media screen and (max-width: 1200px) {
    html {
        overflow-x: hidden;
    }
    .quad-section-image img {
        min-width: 350px;
    }
    .quad-section-text {
        min-width: 350px;
    }
    .intro {
        width: 30rem;
    }
    .intro-headline {
        font-size: 1.75rem;
    }
    .intro-bio {
        font-size: 1.5rem;
    }
    .intro-buttons {
        text-align: center;
    }
    .intro-button:not(:last-child) {
        margin: 0;
    }
    .shortbio-text, .quad-section-text p, .projects-description-text {
        font-size: 1.25rem;
    }
    .headshot-container, .headshot {
        min-height: 425px;
        min-width: 400px;
    }
    .hero-wrapper, .article-wrapper {
        max-width: 750px;
    }
    .hero-image-container img {
        max-width: 350px;
        max-height: 300px;
    }
}

/* 769-992px */
@media screen and (max-width: 992px) {
    .intro {
        width: 25rem;
        /* margin-left: -16rem; */
        padding-bottom: 3rem;
    }
    .intro-button:not(:last-child) {
        margin-bottom: 0.5rem;
    }
    .quad-section-image img {
        min-width: 250px;
    }
    .shortbio-text, .quad-section-text p, .projects-description-text {
        font-size: 1.250rem;
    }
    .about, .projects {
        max-width: 100%;
    }
    .hero-wrapper {
        flex-direction: column;
        width: auto;
    }
    .hero-image-container img {
        max-width: 400px;
    }
}

/* intermediate font fixes */
@media screen and (max-width: 820px) {
    .shortbio-text, .projects-description-text {
        font-size: 1.25rem;
    }
    .quad-section-text p {
        font-size: 1.125rem;
    }
    .intro {
        margin-bottom: 1.25rem;
    }
    .intro, .headshot-container {
        position: relative;
        margin-right: 0;
        margin-left: 0;
        width: 30rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: none;
    }
    .skyline {
        border-radius: 20px;    
    }
    .headshot-container::before {
        background: none;   
    }
    .info {
        flex-wrap: wrap;
    }
}

/* 601-768px */
@media screen and (max-width: 768px) {
    .shortbio h3, .tools h3, .projects h3 {
        font-size: 3.5rem;
    }
    .quad-section-image img {
        min-width: 225px;
    }
    .quad-section-text {
        min-width: 225px;
    }
    .quad-section-text p {
        font-size: 1rem;
    }
}

/* 481-600px */
@media screen and (max-width: 600px) {
    .quad-section-row {
        flex-wrap: wrap-reverse;
    }
    .tools {
        max-width: 90%;
    }
    .about {
        max-width: 90%;
    }
    .intro {
        max-width: 90%;
        margin: 0 auto 0.5rem auto;
    }
    img.headshot {
        max-width: 90%;
        margin: 0 auto;
    }
    .intro-buttons {
        display: flex;
        flex-direction: column;
        max-width: 60%;
    }
    .intro-button:not(:last-child) {
        margin: 0rem 0rem 0.5rem 0rem;
    }
    .headshot-container, .headshot {
        min-height: unset;
        min-width: unset;
    }
    .article-wrapper {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 574px) {
    .shortbio-text, .quad-section-text p, .projects-description-text {
        font-size: 1.25rem;
    }
}

/* 0-480px */
@media screen and (max-width: 480px) {
    .shortbio-text, .quad-section-text p, .projects-description-text {
        font-size: 1rem;
    }
    .shortbio h3, .tools h3, .projects h3 {
        font-size: 2.5rem;
    }
    .intro-headline, .intro-bio {
        font-size: 1.25rem;
    }
    .intro-button {
        font-size: 1rem;
    }
    .project-title {
        font-size: 2rem;
    }
    .desc {
        font-size: 1rem;
    }
    .icon-card p {
        font-size: 0.75rem;
    }
    .hero-image-container img, .article-image-container img {
        max-width: 100%;
        margin: 0 auto;
        max-height: 200px;
    }
    .hero-text-container {
        padding: 1rem 0 1rem 0;
    }
    .hero-text-container h1 {
        font-size: 1.5rem;
    }
    .article-wrapper {
        margin: 0 auto;
        padding: 0 1rem 1rem 1rem;
    }
    .article-text-container {
        padding: 0.5rem 0 0 0;
    }
}