<div class="hero">
  <div class="hero__content">
    <h2>Best Brownies in Town</h2>
    <p>High quality ingredients and best in-class chef</p>
    <a href="#">Order now</a>
  </div>
  <img class="hero__figure" src="https://picsum.photos/1920/500?random=1" alt="hero" />

</div>
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@600&display=swap");

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

body {
  width: 100vw;
  min-height: 100vh;
  font-family: "Exo", Arial, sans-serif;
  background-color: #557;
}

.hero__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
}

p {
  margin: 0.5rem 0 1.5rem;
}

a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  background-color: #feca53;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  box-shadow: 0 3px 8px rgb(0 0 0 / 7%);
  transition: all 0.2s linear;
}

a:hover {
  background-color: #ff9800;
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero__figure {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* The overlay */
.hero::after,
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 50%;
  background-image: linear-gradient(120deg, #eaee44, #33d0ff);
  background-color: rgb(0 0 0 / 0.5);
  opacity: 0.5;
  transform: skew(15deg) translateX(-50%);
  width: calc(100vw + 50%);
}

.hero::before {
  transform: skew(-15deg) translateX(-50%);
}

.hero__content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  text-align: center;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.