/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #000000;  /* solid black */
  color: #ffffff;
  font-family: Arial, sans-serif;
}

/* Layout */
.content {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000; /* ensure it's black */
  text-align: center;
}

.logo {
  width: 25%;        
  height: auto;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: #ffffff;
}

@media (max-width: 768px) {
  .logo {
    width: 80%;
  }
}

/* Footer */
footer {
  width: 100%;
  background-color: #000000;
  padding: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #cfa344ff;
}

footer a {
  color: #888888;
  text-decoration: underline;
}
