<html lang="en">
    <head>
      <meta charset="utf-8">
    </head>
    <div class="wrapper">
      <div class="static-txt">I'm a</div>
      <ul class="highlights">
        <li><span>Designer<span style="color: #039BE5;">,</span></span></li>
        <li><span>Coder<span style="color: #039BE5;">,</span></span></li>
        <li><span>Web Developer<span style="color: #039BE5;">,</span></span></li>
        <li><span>Powerpoint Expert<span style="color: #039BE5;">,</span></span></li>
        <li><span>Codepen User<span style="color: #039BE5;">.</span></span></li>
      </ul>
    </div>
  </html>
@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Raleway, sans-serif; 
}

body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #262A37;
}

.wrapper{
  display: inline-flex;
}

.wrapper .static-txt{
  font-size: 2.5rem;
  color: #fff;
  font-weight: 400;
}

.wrapper .highlights{
  list-style: none;
  font-size: 2.5rem;
  margin-left: 15px;
  color: #00E676;
  font-weight: 600;
}

.wrapper .highlights li span:hover{
  text-shadow: 2px 2px #D84315;
  transition: 1s;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.