.grid-example-2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  background: #e9ecef;
  padding: 20px;
  border-radius: 4px;
}

.grid-item-2 {
  background: #6f42c1;
  color: white;
  padding: 15px;
  text-align: center;
  border-radius: 4px;
  font-weight: bold;
}

.span-example {
  grid-column: span 3;
  background: #fd7e14;
}