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

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

  background-image:url('https://codecraftworks.dev/web/pEfaUP2cUnfmMEBEFRVZ/assets/max-van-den-oetelaar-IClZkw4UhRA-unsplash-small.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;
}