﻿
.box {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

h1 {
    color: #e7ebf2;
    font-size: 12.5rem;
    letter-spacing: 0.1em;
    margin: 0.025em 0;
    text-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

@media (max-width: 30rem) {
    h1 {
        font-size: 8.5rem;
    }
}

h1 > span {
    -webkit-animation: spooky 2s alternate infinite linear;
    animation: spooky 2s alternate infinite linear;
    color: #528cce;
    display: inline-block;
}

h2 {
    color: #e7ebf2;
    margin-bottom: 0.4em;
}

p {
    color: #ccc;
    margin-top: 0;
}

@-webkit-keyframes spooky {
    from {
        transform: translatey(0.15em) scaley(0.95);
    }

    to {
        transform: translatey(-0.15em);
    }
}

@keyframes spooky {
    from {
        transform: translatey(0.15em) scaley(0.95);
    }

    to {
        transform: translatey(-0.15em);
    }
}
