#container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin:0;
  display:flex;
  justify-content:center;
  align-items:center;
  background-color: black;
}
#content{
  width:794px;
  height:800px;
  border:5px solid red;
  border-radius:50%;
  overflow: hidden;
	background-image:url(https://projects.codecraftworks.com/web/Tu3hMq55WsAFp9PEmTsL/assets/backgroundproj.png);
  background-repeat: no-repeat;
	background-size: contain;
  background-position: center;
  /* text portion */
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 70%;
  font-size: 70%;
  /* clip portion */
  background-clip:text;
  -webkit-background-clip:text;
  color: transparent;
  -webkit-text-fill-color:transparent;
}


/* #background-img {
  background-image: radial-gradient(circle, #6A4D25, #0B5066);
  padding: 3%;
  color: white;
}

#cliptext {
  background: radial-gradient(circle, #6A4D25, #0B5066);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

radial-gradient(purple, navy);
linear-gradient(to right, purple, navy);
repeating-radial-gradient(purple 1px, navy 4px);
repeating-linear-gradient(to right, purple 1px, navy 15px);
conic-gradient(purple, navy); 
*/