  @font-face {
  font-family: 'DM Sans';
  src: url('https://telepez.github.io/DMSans-9ptRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}    
   
   body {
      margin: 0;
      padding: 0;
      font-family: 'DM Sans', sans-serif;
      background: linear-gradient(135deg, #ff1493, #32cd32);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      color: white;
    }

    .logo {
      width: 300px;
      height: auto;
      margin-bottom: 10px;
    }

    .caption {
      font-size: 1.5rem;
      margin-bottom: 40px;
    }

    .button-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 15px 30px;
      font-size: 1rem;
      color: white;
      background: linear-gradient(135deg, #ff1493, #32cd32);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .btn:hover {
      transform: translateY(-5px);
      box-shadow:
        0 10px 15px rgba(0, 0, 0, 0.5),
        0 0 10px white,
        0 0 20px white;
    }

#languageSwitcher {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#languageSwitcher:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
