4. Create styles.css

Paste:

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

body {
  font-family: Arial, sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 10%;
  left: 8%;
  color: white;
}

h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

p {
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  color: white;
  border: 1px solid white;
}

.button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {

  h1 {
    font-size: 2.5rem;
  }

  .overlay {
    left: 5%;
    right: 5%;
  }

}