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

#content{
  width:1000px;
  height:500px;
  border:5px solid lightgreen;
  border-radius:50%;
  line-height: 80%;
  font-size: 10%;
  overflow:scroll;
  text-align: justify;

  background-image:url('https://projects.codecraftworks.com/web/oDvdkUpD3c6eKDDPuIUv/assets/777498.jpg');

  background-repeat:no-repeat;
  background-position:center top;
  background-size: cover;
  font-family:Impact;
  
  background-clip:text;
  -webkit-background-clip:text;
  color: transparent;
  -webkit-text-fill-color:transparent;
}