.container {
  animation: introContainer 4s 4s ease forwards 1;
  display: block;
  padding-top: 72px;
  opacity: 0;
  pointer-events: none;
}

@keyframes introContainer {
  100% {
    opacity: 1;
    pointer-events: all;
  }
}

.intro {
  animation: intro 4s 0s ease forwards 1;
  text-align: center;
  transform: scale(3);
  opacity: 0;
  position: fixed;
  top: calc(50% - 32px);
  left: 0;
  right: 0;
}

@keyframes intro {
  50% {
    top: calc(50% - 32px);
    transform: scale(1);
    opacity: 1;
  }

  99.999% {
    top: 32px;
    transform: scale(1);
    opacity: 1;
    position: fixed;
  }
  100% {
    top: 32px;
    transform: scale(1);
    opacity: 1;
    position: absolute;
  }
}

.intro #heartPath {
  fill: transparent;
  stroke: #de0909;
  stroke-width: 21px;
}

.intro #heartPulse {
  animation: heartPulse 2s 0s ease-out forwards infinite;
  fill: transparent;
  stroke: #de0909;
  stroke-width: 21px;
}

@keyframes heartPulse {
  from {
    opacity: 1;
    transform: scale(1) translate(-0%, -0%);
    stroke-width: 21px;
  }

  to {
    opacity: 0;
    transform: scale(1.4) translate(-16%, -12%);
    stroke-width: 1px;
  }
}

.textPulse {
  animation: textPulse 1s 0s ease-out forwards infinite;
  text-shadow: 0 0 0 #be1a1a;
}

@keyframes textPulse {
  50% {
    text-shadow: 0 0 5px #be1a1a;
  }
  100% {
    text-shadow: 0 0 10px transparent;
  }
}

#picture {
  animation: picture1 4s 7s ease alternate infinite;
  position: absolute;
  left: calc(50% - -7px);
  top: 118px;
  border-radius: 50%;
  width: 32px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

@keyframes picture1 {
  0%, 45% {
    opacity: 0;
  }
  55%, 100% {
    opacity: .8;
  }
}

#pictureAmpersand {
  animation: picture2 4s 7s ease alternate infinite;
  display: inline-block;
}

@keyframes picture2 {
  0%, 45% {
    color: #de0909;
    text-shadow: 0 0 4px transparent;
    opacity: 1;
    transform: scale(1);
  }
  55%, 100% {
    color: #000;
    text-shadow: 0 0 4px white;
    opacity: .8;
    transform: scale(0.5);
  }
}



/* Old Styles*/
::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* make scrollbar transparent */
}

body {
  background: #800505;
  background: radial-gradient(circle at 50%, #480303, black 150%) no-repeat center/cover;
  background-attachment: fixed;

  color: #be1a1a;
  font-family: 'Caladea', serif;
}

a {
  color: inherit !important;
}

.border {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
}

.container {
  margin: 0 auto;
  max-width: 960px;
  width: 95%;
  width: calc(100% - 40px);
}

.title {
  color: #de0909;
  font-variant: small-caps;
  margin-bottom: 48px;
  margin-top: 1em;
  text-align: center;
}

.title .subtitle {
  display: block;
  font-size: .5em;
  opacity: .333;
}

.grid-fix {
  margin: 48px 0 48px;
}
.grid-fix::after {
  content: "";
  clear: both;
  display: table;
}

.card {
  background: rgba(0,0,0,.2);
  color: #800505;
  border: 4px solid currentColor;
  box-sizing: border-box;
  float: left;
  margin: 20px 10px 0;
  padding: 1em 2em;
  width: 33.3%;
  width: calc(33.3% - 20px);
}

@media (max-width: 960px) {
  .card {
    margin-left: 0;
    width: 100%;
  }
}

.card.active {
  color: #be1a1a;
}

.card .progress {
  color: #800505;
  margin-bottom: 3px !important;
}

.card .card-title {
  font-size: 1.5em;
  margin: 0;
  margin-top: 3px !important;
  padding: 0;
}

.card .card-title, .card p, .card > span {
  display: block;
  margin: 9px 0;
}

.links {
  opacity: .53;
  margin-bottom: 48px;
}

.alert {
  background: rgba(0,0,0,.5);
  border-radius: 3px;
  display: inline-block;
  padding: .25em .5em;
  color: #bbb;
  position: absolute;
  top: .7em;
}

.alert a {
  color: white !important;
  text-decoration: underline;
  text-decoration-color: #bbb;
}
