body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Segoe UI", sans-serif;
  background: #0f172a;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

#my-page {
  width: 100%;
  max-width: 800px;
  padding: 32px 24px;
  background: #020617;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
}

header h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

header h2 {
  font-size: 20px;
  font-weight: 400;
  color: #cbd5f5;
  margin-bottom: 1px;
}

header p {
  color: #e5e7eb;
  margin-bottom: 32px;
}

section h3 {
  font-size: 17px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #facc15;
}

.nav-container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.nav-container a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(148, 163, 184, 0.4);
}

.nav-container a:hover {
  color: #ef7171;
  background-color: #030509;
  transform: translateX(1px);
}

footer {
  width: auto;
  padding: 2px 40px;
  background: #46528b;
  color: #f9fafb;
  text-align: center;
  font-size: 16px;
  border-radius: 50px;
  margin-top: 100px;
}