main {
    min-height: 830px;
    background-color: #efeffa;
    padding-bottom: 64px;
}

section {
    margin: 0 auto 0;
    width: 726px;
}

.main_section_header {
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 40px;
    font-size: 36px;
    font-weight: 600;
}

.main_section_header .logo {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-color: #335384;
    margin-right: 10px;
}

.header_paragraph {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    line-height: 26px;
}

.post {
    display: flex;
    background-color: #fbfbfb;    
    margin-top: 40px;
    box-shadow: -10px 10px 24px 0px rgba(138,131,124,0.23);        
    flex-direction: column;
}

.post a {
    outline: none;
    text-decoration: none;
    color: inherit;
}

.post .post_header {
    display: flex;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.post .post_header .logo {
    background-color: #335384;
    width: 10px;
}

.post .post_header .post_info {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.post .post_header .post_info .title {
    font-size: 20px;
    font-weight: 600;
    color: #335384;
}

.post .post_header .post_info .site {
    font-weight: 400;
    margin-top: 4px;
}

.post .post_header .post_info .date {
    font-size: 14px;
    font-weight: 300;
    margin-top: 4px;
}

.post .post_description {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 20px;
    font-weight: 300;
    line-height: 24px;
}

.post .post_image {
    width: 100%;
    display: block;
    padding: 10px;
}

.post .post_image .center_cropped {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.post.hidden {
    display: none;
}

#lazyload {
    width: 160px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #335384;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 300;
}

@media (max-width: 600px) {
    main {
        padding-left: 16px;
        padding-right: 16px;
    }

    section {
        width: 100%;
    }

    .main_section_header {
        padding-top: 40px;
        padding-bottom: 22px;
        font-size: 32px;
    }
 
    .header_paragraph {
        padding-top: 18px;
        padding-bottom: 0px;
    }

    .post .post_header .post_info .title {
        font-size: 19px;
    }    

    .post .post_header .post_info {
        padding-left: 14px;
        padding-right: 24px;
    }

    .post .post_description { 
        padding-left: 24px;
        padding-right: 24px;
    }

}