/*
light blue:  #81b1f1
medium blue: #619ded 
dark blue: #446ea6
body padding color: #c0d8f8
font-family: 'Allura', cursive;
font-family: 'Kumbh Sans', sans-serif;
#131f2f
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  color: #777;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  padding: 18px;
}

.header {
  height: 95vh;
  background-image: linear-gradient(
      to right bottom,
      hsla(214, 80%, 73%, 0.8),
      hsla(214, 42%, 46%, 0.8)
    ),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 85vh, 50% 100%, 0 85vh, 0 100%);
  position: relative;
}

.logo-box {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo {
  height: 120px;
}

/* INFO BOX */
.text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* backface-visibility: hidden; */
  text-align: center;
}
/* HEADING */
.heading-primary {
  color: #131f2f;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 17px;
  line-height: 1.6;
  cursor: pointer;
  margin-bottom: 60px;
}
.heading-primary span {
  display: block;
}

.heading-primary span:nth-child(1) {
  animation: moveInLeft 1s ease-out;
}
.heading-primary span:nth-child(2) {
  transition: 0.5s linear;
  font-family: "Allura", cursive;
  animation: moveInRight 1s ease-out;
}
.heading-primary span:nth-child(2):hover {
  margin-left: 10px;
}

.heading-primary span:nth-child(2):hover {
  color: #fff;
  text-shadow: 0 0 10px #0a1018, 0 0 20px #0a1018, 0 0 40px #0a1018;
}

/* .about-info {
  color: #131f2f;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 2px;
  animation: moveInRight 1s ease-out;
} */

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(20px);
  }
  100% {
    opacity: 100;
    transform: translateX(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-20px);
  }
  100% {
    opacity: 100;
    transform: translateX(0);
  }
}

/* BUTTON */
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 100px;
  position: relative;
}
.btn-white {
  background-color: #eff5fd;
  color: #131f2f;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn-white::after {
  background-color: #eff5fd;
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 100;
    transform: translateY(0);
  }
}
