body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  margin: 0;
  padding: 0;
}
header {
  background: #f5c518;
  color: #111;
  text-align: center;
  padding: 2rem 1rem;
}
nav {
  background: #222;
  text-align: center;
  padding: 1rem 0;
}
nav a {
  color: #f5c518;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background: url('https://i.ibb.co/5nJrpyQ/fulltime-flow-banner.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h2 {
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  border-radius: 10px;
}
.content {
  padding: 2rem;
}
footer {
  background: #000;
  text-align: center;
  padding: 1rem;
  color: #888;
}