#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:10px solid #005500;
  border-radius:50%;
  line-height: 90%;
  font-size: 50%;
  overflow: hidden;
  text-align: justify;

  background-image:url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

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