<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">p a {
  text-decoration: none;
  font-weight: normal;
  color: #525252;
}

h2{
  margin-bottom: 30px;
}

img {
  width: 100%;
  margin-bottom: 30px;

  -webkit-transition: all 300ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
   -moz-transition: all 300ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
     -o-transition: all 300ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
        transition: all 300ms cubic-bezier(0.455, 0.030, 0.515, 0.955); /* easeInOutQuad */
}

img:hover, img:focus{
  z-index: 1;
  transform: scale(1.5);

  -webkit-transition: all 500ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
  -moz-transition: all 500ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
  -o-transition: all 500ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
  transition: all 500ms cubic-bezier(0.455, 0.030, 0.515, 0.955); /* easeInOutQuad */
}
</pre></body></html>