body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/**/a img{
  width :50vh;
  height: auto;
  box-shadow: 10px 10px 40px black;
  border-radius: 4%;
  margin-top: 20px;
  margin-bottom: 10%;
  
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

img {
    width: 30%;
    border-radius: 8px;
    text-align: center;
    transition:  transform  0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    img {
        width: 45%;
    }
}

@media (max-width: 480px) {
    img {
        width: 90%;
    }
}
.image-link {
  background-color: #173459;
  }