.text-air {
  font-family: Georgia,serif;
  font-weight: 400;
  border-radius: 2px;
  color: rgba(237,233,234,.82);
  letter-spacing: 1px
}
.playbutton {
  color: #fff;
}
.font-about {
  line-height: 150%;
  font-size: 1.5rem;
  padding-bottom: 24px;
  font-family: Mulish,sans-serif;
  text-decoration-line: overline;
  opacity: .85
}
.stick {
  position: sticky;
  top: 0;
  z-index:9999;
}
.sticky {
  position: fixed;
  top: 0;
  z-index:9999;
}
.scrolls {
  scroll-behavior: smooth;
}
.shadowknob {
  -webkit-animation : pulse 2s infinite;
  -moz-animation    : pulse 2s infinite;
  -o-animation      : pulse 2s infinite;
  animation         : pulse 2s infinite;
}

@keyframes pulse {
    from {
        transform : scale(1);
        opacity   : 1;
    }
    50% {
        transform : scale(0.9);
        opacity   : 1;
    }
    to {
        transform : scale(1);
        opacity   : 1;
    }

@-webkit-keyframes pulse {
  0%   { -webkit-transform: scale(1)   ; opacity: 1;    }
  50%  { -webkit-transform: scale(0.9); opacity: 1; }
  100% { -webkit-transform: scale(1)   ; opacity: 1;    }
 }

.wordrap{
  word-wrap: break-word;
}