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

#content
{
  width: 500px;
  height: 500px;

  border-radius: 50%;
  overflow: hidden;
  font-size: 10px;
  line-height:90%;
  font-family: Impact;
  font-weight: bold;
  text-align: justify;
  background-image: url("https://projects.codecraftworks.com/web/TiTefVEgHsKMsi6ebh4v/assets/johannes-plenio-RwHv7LgeC7s-unsplash (1).jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  
  background-clip: text;
  -webkit-background-clip:text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
  
