* {
  font-family: "Lora", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  background-image: url(img/background1.jpg);
  background-size: contain;
}
.introductory {
  width: 100%;
  position: relative;
}
.introductory > img {
  width: 100%;
}
.container .avatar {
  width: 35%;
  height: 62%;
  position: absolute;
  left: 7%;
  top: 65%;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.center {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  background-size: cover;
}
.center > div {
  width: 50%;
  height: 20%;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.center > div > h3:first-child {
  font-family: "Paytone One", sans-serif;
  font-size: 180%;
  text-shadow: rgb(255, 145, 77) 1px 2px 3px;
  color: rgb(0, 0, 0);
}
.center > div > h3:last-child {
  font-size: 100%;
  padding-left: 15px;
}
.center > span {
  margin-top: 80px;
  text-align: center;
  align-self: center;
  font-size: 20px;
  font-family: "Lora", serif;
  background-color: rgba(254, 253, 249, 0.8);
  bottom: 0;
}
.button_center {
  margin-top: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.button_center > a {
  width: 90%;
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 5px;
  border: 2px solid rgb(119, 119, 119);
  border-radius: 40px;
  background-color: rgb(255, 235, 210);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  gap: 20%;
  text-decoration: none;
  color: black;
}
.button_center > a > img {
  width: 50px;
  height: 50px;
}
.button_center > a > span {
  text-align: center;
  padding-right: 10px;
}
.button_center > a:nth-child(2) > span {
  padding-left: 40px;
}
.container_slide {
  width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.container-img_review {
  width: 400px;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
}
.slide_show {
  width: 98%;
  height: 98%;
  display: flex;
  position: relative;
  overflow: hidden;
}
#button-left {
  position: absolute;
  top: 45%;
  left: 5px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  z-index: 2;
}
#button-right {
  position: absolute;
  top: 45%;
  right: 5px;
  display: flex;
  color: white;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  z-index: 2;
}
.list_img {
  display: flex;
  transform: translateX();
  transition: 1s;
}
.list_img img {
  max-width: 100%;
  height: auto;
}
.feeback_slon {
  width: 90%;
  height: auto;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr); /* Chia thành 2 cột */
  align-items: center;
  justify-items: center;
}
.feeback_slon > div {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid rgb(88, 88, 88);
  border-radius: 25px;
  box-shadow: 0px 7px 3px rgb(161, 161, 161);
}

.feeback_slon > div img {
  max-width: 97%;
  height: 97%;
  border-radius: 30px;
}
.destination {
  width: 90%;
  height: 1px;
  border-top: 2px solid black;
  margin: 30px 0;
}
@media (min-width: 400px) and (max-width: 500px) {
  .container {
    width: 110%;
  }
  .center {
    height: 135px;
  }
  .center > div {
    width: 50%;
    padding-left: 0;
  }
  .center > div > h3:first-child {
    font-size: 25px;
  }
  .center > div > h3:last-child {
    font-size: 15px;
  }
  .center > span {
    margin-top: 70px;
    font-size: 15px;
  }
  .container-img_review {
    width: 400px;
    height: 280px;
  }
}
@media (max-width: 400px) {
  .container {
    width: 110%;
  }
  .center > span {
    margin-top: 40px;
    font-size: 90%;
  }
  .center > div > h3:first-child {
    font-size: 20px;
  }
  .center > div > h3:last-child {
    font-size: 10px;
    padding: 0;
  }
  .container-img_review {
    width: 330px;
    height: 230px;
  }
  .feeback_slon {
    width: 90%;
  }
  .feeback_slon > div {
    width: 170px;
    height: 170px;
  }
}
