﻿/* 
How To Place Images Side by Side
https://www.w3schools.com/howto/howto_css_images_side_by_side.asp
*/
#rightImage  
{  
  transition: transform .2s; /* Animation */  
    margin: 0 auto;
}  
#rightImage:hover img  
{  
  transform: scale(2.0); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */   
  
}
/* 
How To Place Images Side by Side
https://www.w3schools.com/howto/howto_css_images_side_by_side.asp
*/ 
.column {
  float: left;
  width: 33.33%;
  padding: 0px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}