@charset "UTF-8";
body {
  font-family: var(--font-family-monospace);
  background: url("img/hongKong.jpg") no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.card .card-header {
  background-color: #7882A1;
  color: var(--white);
}
.card .list-group-item a {
  min-height: 50px;
}
.card .list-group-item img {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .list-group-item span {
  padding: 0 60px;
}

/*
 * Luis Badiali
 * badiali.es
 * Please leave your like | Por favor deja tu like
 */
.love {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: fixed;
  z-index: 1;
  bottom: 1rem;
  left: 1rem;
  padding: 1em;
  font-family: monospace, sans-serif;
  font-size: 0.875rem;
  line-height: 1em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 5px;
}
.love::after {
  content: "❤️";
  margin-left: 10px;
  -webkit-animation: beat 0.5s alternate infinite ease-in;
          animation: beat 0.5s alternate infinite ease-in;
}

@-webkit-keyframes beat {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes beat {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

$link-color: ("primary": red);

.myFont
{
  color: #1d4769;
}

*{
  font-family: Helvetica, Arial, sans-serif;
}