* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

html,
body {
  width: 100%;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top right, #140029 0%, #000000 100%);
  background-color: #000000;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
}

main {
  padding-top: 6rem;
  padding-bottom: 5rem;
  flex: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5% 0 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header h1 a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

header h1 a:hover {
  color: #a855f7;
}

.navbar ul {
  list-style-type: none;
  display: flex;
  gap: 0.6rem;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0.625rem;
  font-weight: normal;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #a855f7;
}

.muted-text .line {
  display: block;
  color: #ffffff;
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 7.813rem);
  color: #ffffff;
  text-align: center;
  margin-top: 4rem;
  font-weight: normal;
}

.content-section {
  text-align: center;
  font-weight: normal;
  background-color: rgba(66, 61, 61, 0.5);
  width: 90%;
  max-width: 1200px;
  min-height: 400px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 8px;
  margin: 2rem auto 0 auto;
  padding: 1.25rem;
}

footer {
  width: 100%;
  padding: 2.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #888888;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #888888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a855f7;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem 1.25rem 0 1.25rem;
    gap: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
