h1 {
  font-weight: bold;
  text-decoration: underline;
  text-align: center;
  font-size: x-large;
}
h2 {
  font-weight: bold;
  text-decoration: underline;
  font-size: large;
}
.SimpleBox {
  border: 2px solid black;
}
.NoTopBottomBorder {
border-top-style: none;
border-bottom-style: none;
}

.NoBottomBorder {
  border-bottom-style: none;
}
.NoTopBorder {
  border-top-style: none;
}

.BorderTop {
border-top: 1px solid black;
}
.BorderBottom {
border-bottom: 1px solid black;
}
.BorderLeft {
border-left: 1px solid black;
}
.BorderRight {
border-right: 1px solid black;
}