/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: linear-gradient(135deg, #ffecb3, #ffc107);
    color: #333;
    overflow: hidden;
  }
  
  .container {
    max-width: 700px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1; /* Nội dung chính nằm dưới meme */
  }
  
  .logo {
    width: 150px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  h1 {
    color: #ff9800;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .about p {
    font-size: 1.2rem;
    /* line-height: 1.6; */
    margin-bottom: 20px;
  }
  
  .btn {
    background: #ff9800;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .btn:hover {
    background: #e68a00;
  }
  
  footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #666;
  }
  
  /* Meme Icons Animation */
  .meme-icons {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .meme-icon {
    position: absolute;
    width: 300px; /* Kích thước lớn hơn */
    height: 300px;
    z-index: 3; /* Đặt trên nội dung chính */
    opacity: 0.9;
    animation: rotate 10s linear infinite; /* Tốc độ xoay chậm hơn */
  }
  
  .meme-icon:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
  }
  
  .meme-icon:nth-child(2) {
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
  }
  
  .meme-icon:nth-child(3) {
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 3s;
  }
  
  .meme-icon:nth-child(4) {
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
  }

  .meme-icon:nth-child(5) {
    top: 30%;
    left: 26%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
  }

  .meme-icon:nth-child(6) {
    top: 70%;
    left: 43%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
  }

  .meme-icon:nth-child(7) {
    top: 80%;
    left: 180%;
    transform: translate(-50%, -50%);
    animation-delay: 7s;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg) translateX(200px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
  }
  

  @media (max-width: 1024px) {
    .meme-icon {
        display: none; /* Ẩn các hình ảnh meme */
      }
  
    .container {
      width: 90%; /* Tự điều chỉnh kích thước */
      margin: 20px auto;
      padding: 15px;
    }
  
    h1 {
      font-size: 1.8rem; /* Thu nhỏ tiêu đề */
    }
  
    .about p {
      font-size: 1rem; /* Giảm kích thước chữ */
    }
  
    .btn {
      padding: 8px 16px; /* Giảm kích thước nút */
      font-size: 0.9rem;
    }
  
    .logo {
      width: 120px; /* Thu nhỏ logo */
    }
  }