/* Apply background gradient to the parent container */
.body {
  background: linear-gradient(
    to bottom,
    #e5e7eb 0%,
    #e5e7eb 250px,
    transparent 250px,
    transparent 100%
  );
  background-color: #f3f4f6;
}
