<div class='cristalBall'>
  <div class='cristal'>
    <div class='ball'>
      <div class='name'>Shamim Khan</div>
    </div>
  </div>
</div>
<div class='background'>
  <div class='circle'>
  <div class='circle1'>
    <div class='circle2'>
      
      <div class='circle3'>
<!--         <div class='star'>Hire</div> -->
      </div>
    </div>
  </div>
  </div>
<div>
body{
  overflow: hidden;
}

.name{
  text-align:center;
/*   margin-top:140px; */
  font-size:37px;
  position:relative;
  font-family: 'Exo', sans-serif;
  color:#fff;
}

.cristalBall{
  width: 100%;
  margin: auto;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index:99999;
}

.background{
  background-color:white;
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
}

.circle{
  background-color:#fffdff;
  height:1300px;
  border-radius:50%;
  width: 1300px;
  margin: auto;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.circle1{
  background-color:#fcefff;
  height:1000px;
  border-radius:50%;
  width: 1000px;
  margin: auto;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: pulse3 10s linear infinite;
}

.circle2{
  background-color:#f3cafc;
  height:700px;
  border-radius:50%;
  width: 700px;
  margin: auto;
  position: absolute;
  top: 50%; left: 50%;
  color:white;
  font-size:40px;
  transform: translate(-50%,-50%);
  animation: pulse 4s linear infinite;
}

.circle3{
  background-color:#ee88fd;
  height:500px;
  border-radius:50%;
  width: 500px;
  margin: auto;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size:50px;
  animation: pulse2 3s linear infinite;
}

.star{
  transform: translate(350px,50px);
  opacity:.6;
}

@keyframes pulse{
  0%{width:700px;height:700px;}
  50%{width:750px;height:750px;}
  100%{width:700px;height:700px;}
}

@keyframes pulse2{
  0%{width:500px;height:500px;}
  50%{width:550px;height:550px;}
  100%{width:500px;height:500px;}
}

@keyframes pulse3{
  0%{width:1000px;height:1000px;}
  50%{width:1050px;height:1050px;}
  100%{width:1000px;height:1000px;}
}

External CSS

  1. https://fonts.googleapis.com/css?family=Exo:900

External JavaScript

This Pen doesn't use any external JavaScript resources.