﻿h2 {
	position: relative;
	margin-bottom: 1em;
	width: 100%;
	text-align: center;
    display: inline-block;

}
h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}
