@import url(https://fonts.googleapis.com/css?family=Rye);

            
.banner {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -132px;
  width: 260px;
  height: 60px;
  border: 1px solid #b35a1b;
  text-align: center;
  color: white;
  background: #EA7924;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0,0,0,.15) inset,
      				0 6px 10px rgba(0,0,0,.15);
}

.banner::before,
.banner::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -70px;
  top: 24px;
  display: block;
  width: 40px;
  height: 0px;
  border: 30px solid #EA7924;
  border-right: 20px solid #b35a1b;
  border-bottom-color: #EA7924;
  border-left-color: transparent;
  transform: rotate(-5deg);
}

.banner::after {
  left: auto;
  right: -70px;
  border-left: 20px solid #b35a1b;
  border-right: 30px solid transparent;
  transform: rotate(5deg);
}