/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: grey;
  margin: 0;
}

.container {
  text-align: center;
  width: 100%; /* Ensures full width on all devices */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
}

.logo {
  max-width: 30%; /* Makes the logo responsive */
  height: auto;
  max-height: 500px; /* Limits the height to prevent oversized logos */
}

.text {
  margin-top: 20px; /* Adds spacing between the logo and the text */
  font-size: 18px;
  color: grey;
}

@media (max-width: 768px) {
  .logo {
    max-width: 80%; /* Smaller size on tablets and phones */
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 70%; /* Even smaller on small mobile devices */
  }
}
