@font-face {
  font-family: "animalchariot"; /* tên bạn muốn đặt */
  src: url("/font/animal_chariot/Animal Chariot.ttf") format("truetype");
  font-weight: normal; /* hoặc bold nếu muốn */
  font-style: normal; /* hoặc italic nếu muốn */
}

* {
  padding: 0;

  margin: 0;
  box-sizing: border-box;
}

#menu {
  width: 90%; /* thay min-width: 100vw bằng width: 100% */
  height: 120px;
  background-color: transparent;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 100;
}
.logo {
  font-family: "animalchariot";
  font-size: 36px;
  font-weight: bold;
  color: rgb(0, 0, 0);

  list-style: none;
  font-weight: bold;
  font-size: 50px;
  margin-right: 400px;
}
.nav {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  margin-right: -200px;
}
.nav li {
  margin: 0 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
.nav li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-family: "courgette";
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 24px;
}
.nav li a:hover {
  color: rgb(95, 95, 107);
  transition: 0.3s;
}
.banner {
  width: 100%;
  min-height: auto;

  background-size: cover;
  background-position: center;
  position: relative;
}
.banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.content {
  width: 80vw;
  margin: auto;
  min-height: 300px;
  background-color: rgba(75, 62, 62, 0.5);
  padding: 30px;
  border-radius: 10px;
  text-align: center;

  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 100px;
}
.content:hover {
  filter: none;
  transition: 0.3 ease in;
}
body {
  margin: 0;
  padding: 0;
  height: 100vh; /* Chiếm hết chiều cao của màn hình */
  background-image: url("/img/personalweb/bannergif.gif"); /* Đường dẫn tới ảnh nền */
  background-size: cover; /* Đảm bảo ảnh phủ đầy màn hình */
  background-attachment: fixed; /* Làm nền cố định khi cuộn trang */
  background-position: center center; /* Đặt ảnh nền ở vị trí trung tâm */
}

.content {
  list-style: none;
  font-size: 30px;
}
.avt img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
}
.card {
  background-color: red;
  padding: 20px;
  margin: 10px;
}
.contact a {
  text-decoration: none;
  color: black;
}
.contact {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 30px;
  width: 300px;
}

.favor {
  display: flex;
  margin-top: 50px;
  font-size: 24px;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
}
.line {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.line li img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
}
.info {
  display: flex;
  justify-content: space-evenly;
}
.contact img {
  width: 50px;
  height: 50px;
}
.card {
  min-width: 300px;
  padding: 20px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(1px);

  border: 1px solid rgba(255, 255, 255, 0.637);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0);

  box-shadow: 0 8px 30px rgba(160, 67, 67, 0.2); /* độ nổi */
  color: white;
}
.contact h1 {
  font-size: 30px;
}
.footer {
  margin-top: 100px;
  width: 100%;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;

  background: rgba(0, 0, 0, 0.247);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 0, 0, 0.637);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0);

  box-shadow: 0 8px 30px rgba(160, 67, 67, 0.2); /* độ nổi */
  color: white;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #00c8ff;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}
