@charset "utf8";

body {
    margin: 0;
    padding: 0;
    background-color: #222;
    font-family: sans-serif;
    text-align: center;
}

.container {
    background-color: #222;
    cursor: pointer;
    & h1:hover {
    color: rgba(40, 147, 247, 0.772);
}
}

a {
    text-decoration: none;
    color: black;
    &:hover {
        text-decoration: underline;
        color: rgba(40, 147, 247, 0.772);
    }
}

h1 {
    font-size: 15vw;
}

.description {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    display: flex;
    flex-direction: column;
    text-align: justify;
}

p {
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

footer {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    height: 40px;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #666;
}

@keyframes animate-chars {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }
    
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


h1.inview a .char {
  animation-name: animate-chars;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-fill-mode: both;
  opacity: 0;
  position: relative;
  display: inline-block;
}


h1.inview a .char:nth-child(1) {
  animation-delay: 0.08s;
}

h1.inview a .char:nth-child(2) {
  animation-delay: 0.16s;
}

h1.inview a .char:nth-child(3) {
  animation-delay: 0.32s;
}

h1.inview a .char:nth-child(4) {
  animation-delay: 0.48s;
}

h1.inview a .char:nth-child(5) {
  animation-delay: 0.56s;
}

h1.inview a .char:nth-child(6) {
  animation-delay: 0.72s;
}

h1.inview a .char:nth-child(7) {
  animation-delay: 0.80s;
}

h1.inview a .char:nth-child(8) {
  animation-delay: 0.96s;
}

h1.inview a .char:nth-child(9) {
  animation-delay: 1.04s;
}

h1.inview a .char:nth-child(10) {
  animation-delay: 1.12s;
}

h1.inview a .char:nth-child(11) {
  animation-delay: 1.20s;
}

h1.inview a .char:nth-child(12) {
  animation-delay: 1.28s;
}

h1.inview a .char:nth-child(13) {
  animation-delay: 1.36s;
}

h1.inview a .char:nth-child(14) {
  animation-delay: 1.44s;
}

h1.inview a .char:nth-child(15) {
  animation-delay: 1.52s;
}

