h1::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 5px;
    background-color: black;
    margin-right: 10px;
  }
  
  h1::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 5px;
    background-color: black;
    margin-left: 10px;
  }
  
  h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 24px;
  }
  