/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Tags: responsive-layout,one-column,two-columns,three-columns,four-columns,left-sidebar,right-sidebar,custom-background,custom-colors,featured-images,full-width-template,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready
Version: 3.19.8.1557209882
Updated: 2019-05-07 08:18:02

*/

.archive-list {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 4% 0;
}

.archive-list article {
    width: 28%;
    margin-bottom: 40px;
    background-color: #f3eded73;
    padding: 1% 0.5%;
    border: 1px solid #2ea3f2;
    -webkit-box-shadow: 10px 10px 14px -6px rgba(0,0,0,0.52);
    -moz-box-shadow: 10px 10px 14px -6px rgba(0,0,0,0.52);
    box-shadow: 10px 10px 14px -6px rgba(0,0,0,0.52);
}

.archive-item {width:25%;}

.archive-item img {
    max-width: 400px;
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

h1,h2 {
    text-align: center;
    margin: 2%;
}

.entry-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entry-content .wp-post-image {
    width: 100% !Important;
}

p {
    padding: 4% 0;
}

@media (max-width: 800px){
    .archive-list {
    flex-direction: column;
        
    }
    
    .archive-item {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
    
    .archive-list article {
        width: 100%;
        margin-bottom: 4%;
        padding: 2% 8%;
    }
    
    .entry-content .wp-post-image {
        object-fit: scale-down !Important;
    }
}