/* BLOG-BANNER */

.blog-banner {
    background-image: url('../img/blog-banner.png');
    background-position: center;
    background-size: cover;
    color: #383838;
    min-height: 40vh;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

/* BLOG-BLOG-POSTS */

.blog-blog-posts {
    width: 80%;
    border: 20px solid #DA4167;
    font-family: 'Didact Gothic', sans-serif;
    padding: 20px;
    margin: 2rem auto;
    background: #383838;
    color: #FEFCFB;
    max-width: 900px;
}

.blog-posts-container {
    margin-bottom: 20px;
}

.blog-posts-container h2 {
    margin-top: 1rem;
}

.quote {
    border-left: 5px solid #DA4167;
    padding-left: 10px;
}

hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

