@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: black;
  list-style: none;
  font-weight: bold;
  font-size: 50px;
  cursor: pointer;
  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: black;
  font-family: "courgette";
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 24px;
}
.nav li a:hover {
  color: rgb(95, 95, 107);
  transition: 0.3s;
}
.content {
  display: flex;

  justify-content: space-around;
}
.payment {
  text-align: center;
}
.content .payment .card {
  width: 700px;
  min-height: 100px;
  border: 1px solid black;
  padding: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 10px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}
.content .payment li {
  list-style: none;
  padding: 30px;
}
.content .payment li:hover .card {
  transform: translate(100px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.content .payment .card p {
  font-size: 35px;
  text-align: center;
  width: 300px;
}
.content .payment .card img {
  width: 100px;
  height: 100px;
}
h4 {
  font-size: 60px;
  font-family: "courgette";
  text-align: center;
  padding: 30px;
}
.content img {
  width: 30%;
  height: 800px;
}
.footer {
  margin-top: 100px;
  width: 100%;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;

  background: rgba(54, 48, 48, 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: rgb(0, 0, 0);
}

.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;
}
