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

body {
  background-color: #000000;
  font-family: "Courier New", Courier, monospace;
  color: #ffffff;
  line-height: 1.6;
}

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

.title {
  text-align: center;
}

.pz {
  max-height: 300px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.nav-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.nav-bar a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.nav-bar a:hover {
  text-decoration: underline;
}

.content {
  text-align: center;
}
