@font-face {
    font-family: Fantasque Sans Mono;
    src: url(../font/FantasqueSansMono-Regular.ttf);
}

section div center h1 a:hover {
    color: #cbf7ed;
}

.container {
    font-weight: 800;
    display: flex;
    height: 100%;
    align-items: center;
    --color: #cbf7ad;
}

.container:hover {
    --color: #cbf7ed;
    color: var(--color);
}

svg {
    display: block;
    text-shadow: none;
    font: 10.5em Fantasque Sans Mono;
    font-weight: bolder;
    width: 20%;
    height: 9vw;
    margin: 0 0;
}

@media screen and (max-width: 800px) {
    .container {
        flex-direction: column;
    }

    svg {
        padding-top: 10px;
        transform: scale(225%);
    }
}

.text-copy {
    fill: none;
    stroke: var(--color);
    stroke-dasharray: 6% 29%;
    stroke-width: 4px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1) {
    animation-delay: -1;
}

.text-copy:nth-child(2) {
    animation-delay: -2s;
}

.text-copy:nth-child(3) {
    animation-delay: -3s;
}

.text-copy:nth-child(4) {
    animation-delay: -4s;
}

.text-copy:nth-child(5) {
    animation-delay: -5s;
}

@keyframes stroke-offset {
    100% {
        stroke-dashoffset: -35%;
    }
}
