#content {
	font-size: 1.1em;
  font-family: sans-serif;
  padding: 1em;
  border: 5px solid red;
  overflow: auto;
}
#bg-image {
	background-image: url("https://projects.codecraftworks.com/web/VTBhbs3Rtn5TjA3TC4DY/assets/Craftcircutedit1.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0.5em;
  background-color: black;
  border: 5px solid red;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
#gradBG {
	background: radial-gradient(circle, red, blue, yellow);
}
#clipBG {
	background: linear-gradient(to left, yellow, blue, red);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
#overflow {
	width: 300px;
  height: 300px;
  /* accepted overflow values: visible, hidden, scroll, auto, initial, inherit */
  overflow: inherit;
}
.text-center {
	text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding: 1em;
  margin-bottom: 1em;
}