main{
    display:flex;
    flex-flow:row wrap;
    justify-content: center;
}

.col{
    flex:1 1 200px;
    min-width:200px;
}

.col .container{
    margin-bottom:40px;
}

.col .container:last-child{
    margin-bottom:20px;
}

.content h3{
    margin-bottom:5px;
}

.content p{
    font-size:12pt;
}

.content a{
    text-decoration:none;
    color:hotpink;
    transition:color .35s ease;
}

.content a:hover{
    color:lightpink;
}