body {
    margin: 0; /* stupid ass default */

    height: 100vh;
    width: 100%;

    background-color: #000000;
    color: #ff6ffc;

    image-rendering: pixelated;
}

/* font: https://www.tinkov.info/gilroy.html */
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-ExtraBold.woff2') format('woff2'),
         url('/fonts/Gilroy-ExtraBold.otf') format('opentype');
    font-weight: bold;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Light.woff2') format('woff2'),
         url('/fonts/Gilroy-Light.otf') format('opentype');
    font-weight: lighter;
}

a:hover {
    transform: scale(1.1) rotate(-1deg);
}

a:active {
    transform: scale(1);
}

.gray {
    color: #623860;
    user-select: none;
}



.container {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5vh;

    font-size: clamp(0pt, 1vw, 12pt);
    line-height: 1;
}

.title {
    width: 91em;

    font-family: 'Gilroy';
    font-weight: bold;
    letter-spacing: -0.025em;

    text-align: center;
}

.title .handcrushedev {
    font-size: 12em;
    mix-blend-mode: screen;
    background-color: black;
}
  
.title .handcrushedev > span {
    display: inline-block;

    animation-name: slideDown;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0,0,0,1);
    animation-fill-mode: forwards;
    opacity: 0;
}
  
.title .handcrushedev > span:nth-child(1) { animation-delay: 0s; }
.title .handcrushedev > span:nth-child(2) { animation-delay: 0.05s; }
.title .handcrushedev > span:nth-child(3) { animation-delay: 0.10s; }
.title .handcrushedev > span:nth-child(4) { animation-delay: 0.16s; }
.title .handcrushedev > span:nth-child(5) { animation-delay: 0.23s; }
.title .handcrushedev > span:nth-child(6) { animation-delay: 0.31s; }
.title .handcrushedev > span:nth-child(7) { animation-delay: 0.40s; }
.title .handcrushedev > span:nth-child(8) { animation-delay: 0.51s; }
.title .handcrushedev > span:nth-child(9) { animation-delay: 0.63s; }
.title .handcrushedev > span:nth-child(10) { animation-delay: 0.77s; }
.title .handcrushedev > span:nth-child(11) { animation-delay: 1s; }
.title .handcrushedev > span:nth-child(12) { animation-delay: 1s; }
.title .handcrushedev > span:nth-child(13) { animation-delay: 1s; }
.title .handcrushedev > span:nth-child(14) { animation-delay: 1s; }

.title .subtitle {
    width: 100%;

    font-weight: lighter;
    font-size: min(6em, 24pt);
    letter-spacing: 0.05em;

    animation-name: fadeIn;
    animation-delay: 1s;
    animation-duration: 5s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    opacity: 0;
}

.title #blurb {
    animation-name: fadeIn;
    animation-delay: 3s;
    animation-duration: 5s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    opacity: 0;

    cursor: pointer;
    user-select: none;
}

.title .subtitle > a {
    display: inline-block;
    height: 0.8em;
}

.title .subtitle > a > img {
    height: 100%;
}

.images {
    width: 90em;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.images .logo {
    width: 30%;
}

.images .logo img {
    width: 100%;
}

@media (orientation: portrait) {
    .images {
        flex-direction: column;
        gap: 2em;
    }

    .images .logo {
        width: 70%;
    }
}



.images {
    animation-name: fadeIn;
    animation-delay: 0.5s;
    animation-duration: 2s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-50vh);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}