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

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

  background-image:url('https://projects.codecraftworks.com/web/UXsMhiYf0X5rErRUq5jO/assets/lucas-glover-j-vwHvyf_cM-unsplash.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;
}