/*trang chủ*/
body {
  margin: 0;
  padding: 0;
  /*background-color: #fce4c2;*/
  font-family: Arial, sans-serif;
  background: linear-gradient(270deg, #ff7eb3, #6ad29c, #d0ee76);
  background-size: 600% 600%;
  animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
  }

 .IMG{
  text-align: left;
  }
  
.container {
  display: flex;
  /* Chia ngang */
  height: 100vh;
  /* Chiều cao full màn hình */
}

.text {
  width: 50%;
  /* Bên trái chiếm 50% */
  padding: 30px;
  box-sizing: border-box;
}

.text h1,
.text h2 {
  text-align: left;
}

.image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 2.5s ease;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ảnh phủ kín */
}
.image img:hover{
  opacity: 0.5;
  transform: scale(1.1);
  }

.full-width {
  display: flex;
  width: 100%;
  height: 100vh;
}

.full-width a {
  width: 50%;
  height: 100%;
}

.full-width img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}

.full-width img:hover {
  opacity: 0.5;
}

/* Khung chữ nằm giữa */
.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 5px black;
  /* tạo viền để chữ dễ đọc trên ảnh */
}

/* Chữ nằm DƯỚI, căn giữa toàn trang */
.below-text {
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  font-size: 24px;
  padding: 24px 12px 48px;
  margin: 0 auto;

}

footer {
  background-color: #333;
  /* màu nền */
  color: white;
  /* chữ màu trắng */
  text-align: center;
  /* căn giữa */
  padding: 20px;
  /* khoảng cách trong */
  margin-top: 40px;
  /* cách nội dung phía trên */
  font-size: 16px;
}

footer p {
  margin: 5px 0;
  /* khoảng cách giữa các dòng */
}

.image-section {
  text-align: center;
  margin: 40px 0;
}

/* Ảnh giữa */
.top-img img {
  width: 300px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* 2 ảnh cạnh nhau */
.bottom-imgs {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.bottom-imgs img {
  width: 200px;
  border-radius: 10px;
}