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

#content{
  width:200px;
  height:200px;
  border:3px solid blue;
  border-radius:20%;
  overflow: auto;
  background-image: linear-gradient(to bottom, rgb(199, 56, 184), rgb(23, 163, 184));
  background-repeat:no-repeat;
  background-position:center top;
  background-size: cover;

  background-clip:text;
  -webkit-background-clip:text;
  color: transparent;
  -webkit-text-fill-color:transparent;
}
