/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

input,
time {
    display: none;
}

time{
  transform: scaleX(0);
}
blockquote, 
time {
  margin: 0;
  border: 0.1em solid black;
  width: 25%;
  height: 10em;
  background: aqua;
  border-radius: 1em;
  padding: 1em;
  margin-bottom: 1em;
    transition: transform 1s;
  display: block;
}
/*input:checked + article blockquote {
    display: none;
}*/
input:checked + article blockquote {
    transform: scaleX(0);
}
/*input:checked + article time {
    display: block;
}*/

input:checked + article time {
   transform: scaleX(1);
}