.content-width, .container, .footer {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}

.pt-sm {
  padding-top: 10px;
}

.pb-sm {
  padding-bottom: 10px;
}

.mb-ssm {
  margin-bottom: 5px !important;
}

.mb-sm {
  margin-bottom: 12px !important;
}

.mb-lg {
  margin-bottom: 15px !important;
}

.pd-10, .header {
  padding: 10px;
}

body {
  background: #202124;
}

#global-container {
  height: 100vh;
}

.container {
  position: relative;
  overflow: hidden;
}

.header {
  text-align: center;
}

.main-title {
  color: #ececec;
}

.header {
  align-items: center;
}

.red {
  color: red;
  font-weight: 600;
}

.flex {
  display: flex;
  flex-direction: column;
}

h1 {
  color: #ececec;
}

.underline {
  position: absolute;
  left: 50%;
  height: 1px;
  width: 9px;
  background: white;
  animation-name: kf-underlineanimation;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes kf-underlineanimation {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(120);
  }
}
@media screen and (min-width: 600px) {
  .main {
    font-size: 1.2em;
  }
}
.main__inner {
  padding: 10px 0;
}
.main__content {
  display: flex;
  opacity: 0;
  animation-name: kf-contentanimation;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.main__content:nth-child(1) {
  animation-delay: 0.03s;
}
.main__content:nth-child(2) {
  animation-delay: 0.06s;
}
.main__content:nth-child(3) {
  animation-delay: 0.09s;
}
.main__content:nth-child(4) {
  animation-delay: 0.12s;
}
.main__content:nth-child(5) {
  animation-delay: 0.15s;
}
.main__content:nth-child(6) {
  animation-delay: 0.18s;
}
.main__content:nth-child(7) {
  animation-delay: 0.21s;
}
.main__content:nth-child(8) {
  animation-delay: 0.24s;
}
.main__content:nth-child(9) {
  animation-delay: 0.27s;
}
.main__content:nth-child(10) {
  animation-delay: 0.3s;
}
.main__header {
  color: #ececec;
  padding-right: 20px;
}
.main__title {
  color: #eaebe6;
}

@keyframes kf-contentanimation {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.footer {
  font-size: 25px;
}
.footer__nav {
  padding-top: 20px;
}
.footer__ul {
  padding: unset;
  list-style: none;
}
.footer__li {
  display: flex;
}
.footer__li > a {
  color: #8AB4F8;
  transition: transform 0.3s;
}
.footer__li > a:hover {
  transform: scale(1.2);
}/*# sourceMappingURL=style.css.map */