
body {
  background: #1e1e2f;
  color: #fff;
  font-family: 'VT323', monospace;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: linear-gradient(90deg, #3b4cca, #1e1e2f);
  color: #ffeb3b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: 80px auto 40px;
  padding: 24px;
  background: #2a2a40;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 16px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact {
  margin-top: 24px;
  font-size: 18px;
}

.contact a {
  color: #4fc3f7;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .container {
    margin: 100px 12px 40px;
    padding: 16px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }
}
