body {
  	background-color: black;
}

#container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin:0;
  background-color: black;
  display:flex;
  justify-content:center;
  align-items:center;
}

#content{
  width:600px;
  height:400px;
  border:10px solid pink;
  border-radius:50%;
  overflow: hidden;
  text-align: justify;
  background-image:url(https://projects.codecraftworks.com/web/xMn5d9V3H1gCbMtdV5KN/assets/PeachesTriggered.jpg);
  background-repeat:no-repeat;
  background-position:center;
  background-size: cover;
  font-family:"Chewy", system-ui;
  font-size: 15%;
  line-height: 75%;
  background-clip:text;
  -webkit-background-clip:text;
  color: transparent;
  -webkit-text-fill-color:transparent;
}