body {
  background-color: #222D19;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 2rem;
}

.logo {
  width: 98%;
  max-width: 1200px;
  height: auto;
  margin-bottom: 4rem;
}

.tagline-primary {
  font-size: 2.75rem;
  font-weight: 600;
  color: #A18C4A;
  text-transform: uppercase;
}

.tagline-secondary {
  font-size: 2rem;
  font-weight: 600;
  color: #A18C4A;
  opacity: 0.85;
  text-transform: uppercase;
  margin-top: 2.25rem;
}

.tagline-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.tagline-keywords span {
  background-color: rgba(255, 255, 255, 0.1);
  color: #A18C4A;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.tagline-keywords span:hover {
  background-color: rgba(255, 255, 255, 0.2);
}


@media (min-width: 768px) {
  .tagline-primary {
    font-size: 2.75rem;
  }

  .tagline-secondary {
    font-size: 2rem;
  }

  .tagline-keywords {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .tagline-primary {
    font-size: 2rem;
  }

  .tagline-secondary {
    font-size: 1.25rem;
  }
}
