/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  padding: 0;
  margin: 0;
  height: 100%;
  overflow: auto;
  font-family: 'Montserrat', sans-serif;
}
#jhc-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-animation: fadeIn 2s ease-in 0.25s;
  -o-animation: fadeIn 2s ease-in 0.25s;
  animation: fadeIn 2s ease-in 0.25s;
  transition-duration: 3s;
}
#jhc-logo:hover {
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.1,1.1);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1,1.1);
  transform: translateX(-50%) translateY(-50%) scale(1.1,1.1);
  transition-duration: 3s;
}
p {
    font-weight: 900;
    color: black;
}
a:visited {
    color: black;
    text-decoration: none;
}
a:link {
    color: black;
    text-decoration: none;
}
a:hover {
    color: #178e47;
    text-decoration: none;
}
.email {
    position: fixed;
    bottom: 1.5em;
    left: 0px;
    padding-left: 1.5em;
    font-size: 36px;
}
.whatsapp {
    position: fixed;
    bottom: 1.5em;
    right: 0px;
    padding-right: 1.5em;
    font-size: 36px;
}
.tac {
    position: fixed;
    text-align: center;
    bottom: 0px;
    width: 100%;
    background: black;
    color: #FFFFFF;
    line-height: 2;
    font-family: 'Montserrat';
    font-size: 14px;
}
@media handheld, screen and (orientation: landscape) {
  #jhc-logo {
    height: 80%;
    width: auto;
  }
}
@media handheld, screen and (orientation: landscape) and (max-height: 950px) and (min-height: 601px) {
  .email {
    font-size: 28px;
  }
  .whatsapp {
    font-size: 28px;
  }
}
@media handheld, screen and (orientation: landscape) and (max-height: 600px) and (min-height: 371px) {
  .email {
    font-size: 24px;
  }
  .whatsapp {
    font-size: 24px;
  }
}
@media handheld, screen and (orientation: landscape) and (max-height: 370px) {
  .email {
    font-size: 20px;
  }
  .whatsapp {
    font-size: 20px;
  }
}
@media handheld, screen and (orientation: portrait) {
  #jhc-logo {
    width: 80%;
    height: auto;
  }
}
@media handheld, screen and (orientation: portrait) and (max-width: 950px) and (min-width: 601px) {
  .email {
    font-size: 28px;
  }
  .whatsapp {
    font-size: 28px;
  }
}
@media handheld, screen and (orientation: portrait) and (max-width: 600px) and (min-width: 371px) {
  .email {
    font-size: 24px;
  }
  .whatsapp {
    font-size: 24px;
  }
}
@media handheld, screen and (orientation: portrait) and (max-width: 550px) {
  .email {
    font-size: 20px;
  }
  .whatsapp {
    font-size: 20px;
  }
}
