body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b1f2a;
  color: white;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0b1f2a;
  text-align: center;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  background: black;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
}

/* Content */
.content {
  padding: 40px;
}