/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Source+Sans+3:wght@400;600&display=swap');

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #e4e4e4;
  background-color: #0f0f0f;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #ffffff;
}

.container {
  max-width: 700px;
  margin: 4em auto;
  padding: 0 1.5em;
}

p {
  margin-bottom: 1.2em;
}

button, .button {
  background-color: #ffffff10;
  border: 1px solid #ffffff30;
  color: #ffffff;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
}

button:hover, .button:hover {
  background-color: #ffffff20;
}

footer {
  margin-top: 4em;
  font-size: 0.9em;
  text-align: center;
  color: #888;
}