@charset "utf-8";

/*
   Web Graphics Production Assignment VF 
   Author: Vasyl Flotskyi
   Date:   11/11/2022   

*/

body {
  margin-top: 5em;
  margin-bottom: 5em;
  background-color: lightblue;
}
div.styleSection {
  margin: 0 auto;
  text-align: center;
  background: DeepSkyBlue;
  width: 920px;
}
h1 {
  padding-top: 20px;
}
h3 {
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
}
img {
  height: 300px;
}
img:hover {
  transition: transform 0.3s;
  transform: scale(1.3, 1.3);
}