body {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: #3e3e3e;
}

a {
    color: #448aff;
}

a:hover {
    text-decoration: none;
}

.header-container {
    background-color: #fafbfd;
    color: white;
}

.header-container a {
    color: #353535;
    text-decoration: none;
}

.header-container a:hover {
    text-decoration: underline;
}

.container {
    width: 900px;
    margin: 0 auto;
    padding: 20px 10px;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .container {
        width: 100%;
        margin: 0;
    }
}

.logo {
    font-weight: bold;
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
}

.logo img {
    padding-right: 15px;
}

.content .post p {
    line-height: 28px;
}

.post {
    border-bottom: 1px solid rgb(201, 201, 201);
    margin-bottom: 20px;
}

.post h1,
.post h2 {
    margin-bottom: 0;
}

.post h1 a,
.post h2 a {
    color: #3e3e3e;
    text-decoration: none;
}

.post h1 a:hover,
.post h2 a:hover {
    text-decoration: underline;
}

.post .contentbody {
    text-align: justify;
}

.post .meta {
    font-size: 14px;
}

.post .banner {
    text-align: center;
}

.post .banner img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: #00000024 0px 2px 5px 1px;
}

.post img {
    max-width: 100%;
}

.post .graphic {
    text-align: center;
}

.post .graphic .subtext {
    font-size: 14px;
}

.footer {
    margin-top: 48px;
    text-align: center;
}

.cta {
    padding: 15px 0;
    text-align: center;
    font-size: 1.1em;
    background-color: #448aff;
    color: white;
}

.cta a {
    color: white;
}

.relatedPosts {
    padding: 20px 20px 40px;
    background-color: #f8f9fa;
}

.relatedPosts .title {
    text-align: center;
}

.relatedPosts .relatedPost {
    border-bottom: 1px solid #e6e6e6;
}

.relatedPosts .relatedPost a {
    padding: 10px 0;
    display: block;
    text-decoration: none;
    color: #202124;
}

.relatedPosts .relatedPost a:hover {
    text-decoration: underline;
}

.feedback {
    margin-top: 40px;
    text-align: center;
    padding: 0 0 20px;
    border-top: 2px dashed #448aff;
    border-bottom: 2px dashed #448aff;
}

.feedback button {
    cursor: pointer;
    padding: 5px 20px;
}