Simple background image and color

HTML

<h2>
Simple Background Image and Color
</h2>

CSS

body{
  background:url(https://www.transparenttextures.com/patterns/arches.png) repeat #16fe6;
  height:100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}