p {
  font-size: 15px;
}
.ngColor{
    color:rgb(202, 29, 29);
}
#trigger-happy{
  cursor: pointer;
  text-decoration: underline;
}
.ngColor:hover{
    color:brown ; 
}
.heading{
  /* text-decoration: underline; */
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation: pulse 1s infinite;
}
.structure{
  display: flex;
}
.structure ul{
  list-style-type: none;
}
.component{
  color: rgb(202, 29, 29);
  font-style: italic;
}
