
body {
  background-image: url(images/home_back.png);
  background-color: black;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.fancylinks {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

img.fancyimages {
  width: 25%;
  height: auto;
  margin-top: 0%;
  padding: 0px,120px;
  transform: scale(1);
  transition: 0.5s ease-in-out;
}

img.fancyimages:hover {
  transform: scale(1.5);
  transition: 0.5s ease-in-out;
}



@keyframes test {
 from{
  width: 25%;
 }
 to{
  width: 30%;
 }

}