:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */

  --primary: 		#08a4a7;
  --secondary: #08a4a7;
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: InterVariable, sans-serif; 
    font-weight: 600;
    line-height: 1.15em;
}

h2 {
    font-size: 2.4em;
}

a {
    color: var(--secondary);
}

.bio {
    background-color: var(--primary);
    padding: 10rem;
}

.bio-subtitle{
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
}

.bio-title{
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
}

.big-text{
    font-size: calc(1.325rem + .9vw);
    font-weight: 500;
}

body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.body-container {
    max-width: 1200px;
}

.footer {
    width: 100%;
    background-color: var(--primary);
    color: #FFFFFF;
    min-height: 50px;
}

img {
    width: 100%;
}

h2 + p img, img + p h3{
    padding-top: 16px;
}

.latest-posts-container {
    width: 992px;
}

.latest-post-row{
    padding: 0px;
}

.latest-posts-title{
    color: var(--primary);
    font-size: 2.4rem;

}

li {
    font-size: 1.1em;
    line-height: 1.6em;
    margin-top: 0.5em;
}

.more-posts-container{
    border: solid 1px #000000;
    border-radius: 8px;
    padding: 0;
}

.navbar {
    background-color: var(--primary);
}

.navbar-brand{
    font-size: 1.6em;
    font-weight: 600;
    color: #FFFFFF;
}

.navbar-brand:hover{
    color: #FFFFFF;
}

.navbar-toggler{
    background-color: #FFFFFF;
}

.nav-link{
    color: #FFFFFF;
}

.nav-link:hover{
    color: #FFFFFF;
}

.nav-link:active {
    color: #FFFFFF;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: #FFFFFF;
}

.note-link {
    font-size: 1.4rem;
    color: #000;
    text-decoration: none;
}

.note-link:hover{
    text-decoration: underline;
}

.paginator-text{
    padding: 12px 24px;
    text-align: center;
    margin: auto;
}

p + h2, p + h3{
    padding-top: 24px;
}

.post-container{
    max-width: 992px;
}

.post-image {
    margin: 1em 0 1em 0;
}

.post-block{
    padding: 14px 0;
}

.post-link{
    color: var(--primary);
    text-decoration: none;
    font-size: 2em;
}

.post-link:hover{
    text-decoration: underline;
}

.post-thumbnail-container {
    min-width: 200px;
    min-height: 200px;
}

.post-thumbnail{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.post-title{
    color: var(--primary);
    font-size: 2.4em;
}

.post-subtitle{
    font-size: 2.4em;
    font-weight: 200;
}

.prompt-container{
    border: 2px solid var(--secondary);
    padding: 10rem 5rem !important;
}

.primary-button {
    color: #FFFFFF;
    background-color: var(--primary);
    padding: 12px 24px;
    margin: 12px 0;
    border-radius: 4px;
    text-decoration: none;
}

.primary-button:hover{
    background-color: #324554;
    color: #FFFFFF;
    cursor: pointer;
}

p {
    font-size: 1.1em;
    line-height: 1.6em;
    margin: 0.5em 0 0.5em 0;
}

.read-more {
    display: inline;
    color: #000000;
    text-decoration: none;
}

.read-more:hover{
    text-decoration: underline;
}

.related-post-title{
    font-weight: 500;
    font-size: 1.2em;
}

.title {
    font-family: InterVariable, sans-serif;
    font-size: 2.4em;
    font-weight: 600;
    line-height: normal;
}

@media screen and (max-width: 768px) {

    .latest-posts-container{
        width: 80%;
    }

    .post-thumbnail-container{
        width: 100%;
        height: 100%;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 600px){
    
    .bio{
        padding: 10rem 0;
    }

    .latest-post-row{
        width: 100%;
    }

    .post-thumbnail-container{
        width: 100%;
        height: 100%;
        margin-bottom: 12px;
    }

    .post-thumbnail{
        width: 100%;
    }

    .row{
        --bs-gutter-x: 0;
    }

}