/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #000;
  color: #56619c;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  text-align: center;
  font-family: 'Orbitron', Arial, sans-serif;
}

h1 { font-size: 38px; }
h2 { font-size: 33px; }
h3 { font-size: 30px; }
h4 { font-size: 28px; }
h5 { font-size: 26px; }
h6 { font-size: 24px; }

/* Paragraphs */
p {
  text-align: center;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #89b8c0;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 100vw;
}

/* Links */
a {
  font-size: 1.2em;
  color: #2542c2;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #00d9ff;
  text-decoration: underline;
}
