p {
  font-size: x-large;
  color: white;
  width: 40%;
  background-color: blueviolet;
  transition: width 3s;
}

p:active {
  width: 100%;
}