* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Figtree', sans-serif;
}

header {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  z-index: 10;
}

header nav {
  display: flex;
  justify-content: center;
  background: transparent;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

header nav ul li a {
  text-decoration: none;
  background-color: #fff;
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

header nav ul li a:hover {
  background-color: #ccc;
  color: #000;
}

#hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 70%,
      rgba(0, 0, 0, 1) 100%),
    url("https://cdn.mongoosee.com/assets/mongoose_banner.webp") center/cover no-repeat;
  position: relative;
  padding-top: 6rem;
}

.hero-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
}

section:not(#hero) {
  margin-top: 1rem;
}

section {
  padding: 4rem 1rem;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

#users {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1rem;
}

#users li {
  list-style: none;
}

.users-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.social-media {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-media a {
  text-decoration: none;
  background-color: #fff;
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-media a:hover {
  background-color: #ccc;
}

.past-usernames {
  margin-top: 1rem;
}