.column_title{
    right: 35px;
    left: 60px;
}
h1{
    text-align: center;
}
p{
    text-align: center;
}
@media only screen and (max-width:600px){
    column_title{
        font-size: 15px;
    }
    p{
        font-size: 10px;
    }
}
@media only screen and (min-width:601px) and (max-width:960px) {
    column_title{
        font-size: 25px;
    }
    p{
        font-size: 15px;
    }
}
@media only screen and (min-width:961px){
    column_title{
        font-size: 35px;
    }
    p{
        font-size: 25px;
    }
}