body {
    font-size: calc(15px + 0.390625vw);
}

.diensten{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.diensten-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.diensten h1{
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 10px 0;
    
}

.diensten-col:hover{
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

