
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&display=swap');

body {
  background-color: #172229;
  color: #e8f6ff;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
}

header {
  padding: 20px 0;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

.menu a {
  color: #43A0D7;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.2s;
}

.menu a:hover {
  color: white;
}

.main-logo {
  margin-top: 80px;
  max-width: 260px;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
}

.container h1 {
  text-align: center;
}

h1 {
  color: white;
  font-size: 32px;
  margin-bottom: 15px;
}

h2 {
  color: #e8f6ff;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 10px;
}

p {
  color: #b9d5e6;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
}

ul {
  margin: 8px 0 16px 20px;
  padding-left: 0;
}

li {
  color: #b9d5e6;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 6px;
}
