/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

<style>
.row-content{background: blue;}
.scale-hover{
  transition: ease all 0.6s;
  }
  .scale-hover:hover{
    transform: scale(1.1)
  }

.row-content{ display: flex; flex-direction: row;}


</style>