@import url('https://fonts.googleapis.com/css2?family=Bayon&display=swap');
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .banner {
    width: 100%;
    height: 100vh; 
    display: flex;
    justify-content: center;
    background-color: #f4f4f4;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25vh;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    overflow: hidden;
  }
  
  .text-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden; 
  }
  .logo{
    display: flex; 
    justify-content: center; 
    align-items: center;
    height: 100%; 
  }
  .logo img {
    max-width: 300px;
  }
  
  .title {
    font-family: "Bayon", serif;
    font-size: 4rem;
    font-weight: bold;
    color: white; 
    text-align: center;
    line-height: 1.5;
    text-shadow: -2px -2px 0 #0046ad, 2px -2px 0 #0046ad, -2px 2px 0 #0046ad, 2px 2px 0 #0046ad;
  }
  
  .subtitle {
    font-family: "Bayon", serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0046ad;
    background-color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    border: 2px solid #0046ad;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: tilt-shake 1s ease-in-out infinite;
  }
  a{
    text-decoration: none;
    color: #0046ad;
  }
  @keyframes tilt-shake {
    0%,
    100% {
      transform: rotate(0);
    }
    20% {
      transform: rotate(-10deg);
    }
    40% {
      transform: rotate(10deg);
    }
    60% {
      transform: rotate(-8deg);
    }
    80% {
      transform: rotate(8deg);
    }
  }
  .footer {
    font-size: 14px;
    color: #0c1f38;
    background-color: white;
    padding: 10px;
    border-radius: 20px;
    display: inline-block;
    position: static; /* Default position for larger screens */
    margin: 20px auto 0;
  }
  
  
  .footer a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .models {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .model img {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .banner {
      height: 100vh; 
    }
    .banner-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 10px;
    }
    .title {
      font-size: 2.3rem;
      line-height: 1.3;
    }
    .text-section {
      align-items: center;
    }
    .subtitle {
      margin-bottom: 10px;
    }
    .logo img {
      margin: 0 auto;
    }
    .footer{
      display: none;
    }
  }
  @media (max-width: 428px) {
    .banner {
      height: 100vh; 
    }
    .banner-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 0px;
    }
    .title {
      font-size: 2.3rem;
      line-height: 1.3;
    }
    .text-section {
      align-items: center;
    }
    .subtitle {
      margin-bottom: 10px;
    }
    .logo img {
      margin: 0 auto;
    }
    .footer{
      display: none;
    }
  }
  @media (max-width: 390px) {
    .banner {
      height: 95vh; 
    }
    .banner-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 0px;
    }
    .title {
      font-size: 2.3rem;
      line-height: 1.3;
    }
    .text-section {
      align-items: center;
    }
    .subtitle {
      margin-bottom: 10px;
    }
    .logo img {
      margin: 0 auto;
    }
    .footer{
      display: none;
    }
  }
  