html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: black;
}

/* Use Flexbox to center content vertically and horizontally */
body {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Center the image inside its container */
.logo-container {
  text-align: center;
}

/* Style for the logo image */
.logo {
  max-width: 40%;
  height: auto;
}

/* Improve layout on small screens */
@media (max-width: 600px) {
  .logo {
    max-width: 90%;
  }
}