/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: midnightblue;
  color: fuchsia;
  font-family: Courier;
   /* Three image containers (use 25% for four, and 50% for two, etc) */

}

.column {
  float: left;
  width: 33.33%;
  padding: 0px;
  margin: -55px;
}
.no-margin {
  margin: 0px;
}
.row::after {
  content: "";
  clear: both;
  display: table;
}
  
  <style>
   .move-image {
      position: relative; 
      top: 50px; 
      left: 100px; 
    }
 container: {
      position: relative;
      display: flex;
      padding: 0px;
    }

    .column {
      position: relative;
      width: 200px;
      height: 200px;
      transition: transform 0.3s ease, z-index 0.3s ease;
    }

    .column img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .column:hover {
      z-index: 7;
      transform: scale(1.2);
    }

.column:not(.no-margin) {
  margin-top: 0px;
  left: -45px
}
    img {
      float: left;
      margin-right: 10px; /* Adds space between the image and text */
    }
  }