#container {
  position : absolute;
  top : 0;
  left : 0;
  width : 100vw;
  height : 100vh;
  margin : 0;
  display : flex;
  justify-content : center;
  align-items : center;
  background-color : black;
  font-size : 90%;
  font-family : arial;
  text-align : justify;
  line-height : 120%;
}
#title {
  color : white;
  padding : 15px;
}
#content {
  width : 850px;
  height : 600px;
  border : 5px solid blue;
  border-radius : 50%;
  overflow : hidden;
  background-image : url('https://projects.codecraftworks.com/web/AVdj5opHGOCWF6D6M6Yi/assets/kramer.jpg');
  background-repeat : no-repeat;
  background-position : center top;
  background-size : cover;
  background-clip : text;
  -webkit-background-clip : text;
  color : transparent;
}