.testbutton {
display: inline-flex;
align-items: center;
justify-content: space-around;
}
2行以上のテキストをDIVの中にvertical中心にするときは
display: flex;
justify-content: center;
align-content: center;
flex-direction: column;
また、下記はzerosixthreeからのもので、6行のCSSで何でも中央に配置できます
p {
text-align: center;
position: relative;
top: 50%;
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}