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

  background-image:url('https://images.pexels.com/photos/209982/pexels-photo-209982.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');

  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;
}