.two {
    padding: 50px 20px;
    text-align: center;
  } 
  .two h1 {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    color: #d8f902;
    font-size: 3em;
    font-weight: normal;
    line-height: 1;
    padding: 10px 0;
    margin: 0;
    display: inline-block;
  }
  .two h1:before {
    content: ""; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    height: 200%;
    border-radius: 50%/30%;
    border: 6px solid #c6f702;
    border-left-color: transparent;
    border-right-color: transparent;
  }
  @media (max-width: 420px) {
    .two h1 {font-size: 2em;}
  }
