body {
    background-color: #000000;
}

.logo-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Take at least the full height of the viewport */
  }
  
  .logo-container img {
    width: 100%; /* Make the image take up 100% of the .logo-container width */
    height: auto; /* Maintain the aspect ratio of the image */
  }
  