* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
  }
  
  .slider {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .content {
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 90%;
  }
  
  .logo {
    width: 180px;
    max-width: 80vw;
    opacity: 0;
    animation: fadeInZoom 2s ease-out forwards;
  }

  .slogan {
    font-size: 30px;
    font-weight: 300;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeText 2s ease-out 1.2s forwards;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-shadow: #fc0 1px 0 10px;
  }
  
  @keyframes fadeInZoom {
    0% {
      transform: scale(0.6);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes fadeText {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .logo {
      width: 140px;
    }
  
    .slogan {
      font-size: 25;
      padding: 0 10px;
    }
  }
  