@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: #1e1e2f;
  color: #ffffff;
  text-align: center;
}

.image-gallery img {
  width: 100px;
  height: 100px;
  transition: transform 0.3s;
  margin: 20px;

}
.image-gallery img:hover {
  transform: scale(1.2);

}