body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body .navbar {
  background-color: #6F8992;
}
body h1 {
  color: #6F8992;
}
body main {
  flex: 1 0 auto;
}
body footer {
  flex-shrink: 0;
  margin-top: 10px;
  background-color: #6F8992;
  color: #fff;
}
body footer a {
  color: #fff;
}
body footer a:hover {
  color: #fff;
}
html {
  overflow-y: scroll;
}
strong {
  font-weight: bold;
}
.hpGrid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  min-height: calc(100vh - 175px);
}
@media (min-width: 768px) {
  .hpGrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.hpGrid > div {
  padding: 1em;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hpGrid > div .lead {
  font-size: 1.5rem;
}
.hpGrid .info1 {
  background: #99d9e1;
  color: #000;
}
.hpGrid .info2 {
  background: #ffc1a3;
}
.hpGrid .info3 {
  background: #5fc3d1;
}
.hpGrid .info4 {
  background: #506365;
}
#flashes {
  position: fixed;
  top: 70px;
  left: 15px;
  width: calc(100% - 30px);
  text-align: center;
  height: 0;
  z-index: 99999;
}
#flashes .alert {
  display: inline-block;
}
.heartWrapper {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15% 0;
}
.heartWrapper .heart {
  font-size: 6em;
  position: relative;
}
.heartWrapper .heart .heartbeat {
  position: relative;
  z-index: 1;
  animation: beat 2s linear infinite;
}
.heartWrapper .heart .heartecho {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: echo 2s linear infinite;
}
@keyframes beat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(0.9);
  }
  21% {
    transform: scale(1.1) skew(0.004turn);
  }
  28% {
    transform: scale(1) skew(0.008turn);
  }
  35% {
    transform: scale(1) skew(0);
  }
}
@keyframes echo {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  14% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  21% {
    opacity: 0.4;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}
/*# sourceMappingURL=front.css.map */