body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: 'Khand', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 40px 0 0 0;
}

.logo-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px; /* space between logo and name */
}

.logo {
  width: 80px;
  height: auto;
}

.company-name {
  font-size: 3rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: 10px;
  text-align: left;
  text-transform: uppercase; /* Add this line */
  color: lightgray;
}

.tagline {
  font-size: 2rem;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 30px;
  text-align: center;
  color: #1a1a1aff;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer {
  text-align: center;
  padding: 20px 0;
  font-size: 1rem;
  opacity: 0.7;
  /* Ensure footer stays at the bottom */
  margin-top: auto;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}