* {
    font-family : 'Rubik', sans-serif;
  }


.content {
    border-radius: 0px 0px 10px 10px;
}

.ref {
    text-decoration: none;
    color : #14FF92;
    background-color: #274537;
    border-radius: 5px;
    padding: 2px;
}

.projectRef {
    text-decoration: none;
    color : #14FF92;
}

.service {
    padding: 3.75%;
    display: grid;
    grid-template-columns: 100%;
    grid-column-gap: 0;
    grid-row-gap: 20px;
    border-radius: 10px;
}

.service > div {
    background-color: #274537;
    color : #14FF92;

}
/* inspired by https://codepen.io/webmadewell/pen/LmEOew?editors=1100 */
@media only screen and (min-width: 640px) {
    .service {
        grid-template-columns: 47.5% 47.5%;
        grid-column-gap: 5%;
        grid-row-gap: 40px;
    }
    .service > div {
    }
}

@media only screen and (min-width: 981px) {
    .service {
        grid-template-columns: 30% 30% 30%;
        grid-row-gap: 50px;
    }
    .service > a {
    }
}


.service > div:hover {
  transform: scale(1.05);
}

img:hover {
    transform: scale(1.20);
}

svg text{
    text-anchor: middle;
    dominant-baseline: middle;
}