.myGrid {
  display: grid;
  grid-template-columns: 25% 50% 25%;
}

.line-break {
  grid-column: span 3;

}

.Header {
  grid-column: 2/3;
  text-align: center;
  font-family: Arial;
  font-size: 100px;
  line-height: 1px;
}

.bar {
  background: black;

}

.content {
  padding: 0px 20px 0px 20px;
  font-family: Arial;
  font-size: 18px;

}

.Regular {

}

.Italic {
  font-style: Italic
}

.Bold {
  font-weight: Bold
}

.Bold-Italic {
  font-weight: Bold;
  font-style: Italic
}
