@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #171717;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 768px;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.image-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}


.text-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: #FF8C00;
  line-height: 1.4;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .logo-container {
    gap: 12px;
  }

  .image-icon img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.75rem;
  }
  
  .subtitle {
    font-size: 0.9rem;
  }
  
  .logo-container {
    gap: 10px;
  }

  .image-icon img {
    width: 40px;
    height: 40px;
  }
}
