* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background-color: #1e1e2f;
  color: white;
  font-family: Arial, sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body {
  justify-content: center;
  width: 100%;
  background-color: #1e1e2f;
}

.container {
  width: 100%;
}

nav {
  background-color: #2d2d44;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
}

nav ul li a {
  color: #d1b3ff;
  text-decoration: none;
  font-size: 18px;
  transition:
    color 0.3s,
    background-color 0.3s;
  padding: 10px 15px;
}

nav ul li a:hover {
  background-color: #4b3b6f;
  color: #ffffff;
}

.content {
  margin-top: 100px;
  text-align: center;
}

.content h1 {
  font-size: 12rem;
}

.content p {
  font-size: 2rem;
  color: #ccc;
}
