Text-Shadow

by Shishir Max

HTML

<div class="text">
  <h2>
Super..
</h2>
</div>

CSS

body {
  background-color: #ECEFF4;
}

.text {
  color: #FF4545;
  font-family: 'Helvetica';
  font-size: 50px;
  text-align: center;
  text-shadow: 3px 3px 5px #3B577D;
}