* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #000;
}

.container {
  text-align: center;
  margin-bottom: 40px; /* Add space between content and footer */
}

header .logo img {
  max-width: 200px;
  margin-bottom: 30px;
}

h1 {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  color: #777;
  margin-bottom: 40px;
}

/* Footer Styles */
footer {
  margin-top: 30px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }
}