/* style.css */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #302a2b;
  color: #f2f2f2;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 200px;
}

header {
  text-align: center;
}

h1 {
  Margin-top: 300px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 16px;
  opacity: 0.7;
  margin-top: 12px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tagline {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
}

.description {
  font-size: 16px;
  opacity: 0.75;
  max-width: 700px;
}

footer {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.6;
}

a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

a:hover {
  border-bottom: 1px solid rgba(255,255,255,0.8);
}
