* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #1e1e2e;
  color: #f8f9fa;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffa726;
  margin-bottom: 20px;
}

nav {
  display: flex;
  justify-content: center;
  background: #2c2f3f;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #f8f9fa;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

nav ul li a:hover {
  background: #ffa726;
  color: #1e1e2e;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}

.text-content {
  background: #2c2f3f;
  padding: 25px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  main {
    height: auto;
    padding: 20px;
  }

  .text-content {
    font-size: 1.3rem;
  }
}
