* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

/* Khung chứa ảnh */
.image-wrapper {
  width: 100%;
  max-width: 1200px;   /* Giới hạn trên cho màn hình lớn */
  padding: 12px;
}

/* Ảnh responsive */
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* bo góc nhẹ cho đẹp */
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}



