body {
  background-color: #dce6f2;
  color: #2b2b2b; 
  font-family: 'Poppins', sans-serif; 
  text-align: center;
}

img {
  width: 200px;
  border-radius: 10px; 
  transition: transform 0.3s ease;
}

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