/*
* stylecont.css
* CSS Folha de estilo das seções de conteúdo internas
* da página principal.
*
*/

.main-container-posts {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 8px;
    width: 100%;
    height: 600px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 14pt;
}

.main-container-posts section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*margin: 0;*/
    /*padding: 10px;*/
    width: 40%;
    height: 400px;

    background-color: white;
    /*border: 2px solid gray;*/
    box-shadow: 4px 12px 6px 4px rgb(209, 217, 231);
    border-radius: 6px;

}

.main-container-posts-title{
    padding: 12px;
    width:100%;
    background: #0870d6;
    color: white;
    font-weight: bold;
    border-radius: 6px 6px 0 0;
}

.main-container-posts-body{
    padding: 12px;
}

