JSFiddle - React, Tailwind, and code Playground

HTML

<img src="http://www.masonbruce.com/wp-content/uploads/2015/03/android-logo-transparent-background.png">
<span>C</span>
<h1>omputer</h1>
<span>S</span>
<h1>cience</h1>
<span>Education</span>

CSS

body
{
  font-family: 'Roboto', sans-serif;
  color:black;
  background:gray;
  }
h1 {
   display:inline-flex;
    -webkit-animation-name: collapse;
    -webkit-animation-duration:2s;  
    animation-name: collapse;
    animation-duration:2s;overflow:hidden;width:0px;
}

span
{
  font-size:80px;
  }

img
{
  height:60px;width:60px;
  }
  
@-webkit-keyframes collapse {
        from {width: 200px;}
    to {width: 0px;}
}
@keyframes collapse {
    from {width: 200px;}
    to {width: 0px;}
}