* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotu', sans-serif;
}

.title
{
    display: flex;
    width: 100%;
    font-size: 3em;
    justify-content: center;
    margin-top: 20px;
}

.title p
{
    padding: 10px;
}

.posts
{
    display: flex;
    justify-content: center;
    padding: 10px;
    flex-wrap: wrap;
    height: auto;
    margin-bottom: 300px;
}

.posts .post
{
    display: flex;

    flex-direction: column;
    background-color: #e1eac9;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    margin-top: 15px;
    margin-right: 15px;
}

.posts .post .post-title
{
    font-weight: bold;
    font-size: 2em;
}