/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling with black background */
body {
  background-color: #000000;
  font-family: "Arial", sans-serif;
  height: 100vh;
  overflow: hidden;
}

/* Main container for centering content */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

/* Logo container */
.logo-container {
  text-align: center;
}

/* Logo image styling */
.logo {
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Fallback logo text styling */
.logo-text {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: none; /* Hidden by default, will be shown via JavaScript if no image */
}

/* Hide logo image if it fails to load */
.logo[src="logo.png"]:not([src*="data:"]):not([src*="http"]) {
  display: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .logo {
    max-width: 250px;
    max-height: 250px;
  }

  .logo-text {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 200px;
    max-height: 200px;
  }

  .logo-text {
    font-size: 1.5rem;
  }
}
