/*Created by Aman chadar[inactive]*/
* {
  margin: 0;
  padding: 0;
  font-family: Courier, sans-serif;
}

body {
  height: 100vh;
  display: block;
  align-items: center;
  justify-content: center;
  background: blueviolet;
}

.text {
  font-size: 60px;
  color: #f19066;
  text-align: center;
  padding-top: 20vh;
}

p {
  font-size: 15px;
  color: #f1f1f1;
  text-align: center;
  font-weight: bolder;
}

.box {
  width: 200px;
  height: 100px;
  background: transparent;
  margin: 40px auto;
  cursor: pointer;
  text-align: center;
  font-size: 90px;
  margin: auto;
  top: 0;
  bottom: 0;
  text-shadow: 5px -5px 5px darkviolet;
  animation: heartbeat 1.5s infinite;
}



@keyframes heartbeat {
  from {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.5);
  }

  70% {
    transform: scale(1);
  }
}

.copy {
  font-size: 10px;
  padding-top: 30vh;
}