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

header {
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
}

h1 {
  font-size: 64px;
  margin-bottom: 10px;
}

h2 {
  font-size: 36px;
  max-width: 700px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
  color: #cbd5df;
}

button {
  margin-top: 20px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  background-color: #d89b2b;
  color: #111;
  cursor: pointer;
  width: fit-content;
}

button:hover {
  background-color: #efb64d;
}
