/* Indie Byte Solutions - Main Styles */

body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for mobile */
  font-family: Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
}

.container {
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.logo {
  max-width: 50%;
  max-width: min(50%, 300px); /* Responsive max-width */
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  body {
    min-height: 100vh;
    min-height: 100dvh;
  }
  
  .container {
    padding: 10px;
  }
  
  .logo {
    max-width: 80%;
    max-width: min(80%, 250px);
  }
  
  .footer {
    bottom: 10px;
    font-size: 12px;
  }
}

/* Ensure no horizontal scroll on very small screens */
@media (max-width: 480px) {
  .logo {
    max-width: 90%;
    max-width: min(90%, 200px);
  }
}