.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 10s linear infinite;
}

@keyframes dash {
    from {
        stroke-dashoffset: 2000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.zoom-in {
    animation: zoom-in 4s;
}

@keyframes zoom-in {
    0% {
        transform: scale(50, 50);
    }

    100% {
        transform: scale(1, 1);
    }
}

.fade-in-title {
    animation: fade-in-title 6s;
}

@keyframes fade-in-title {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.zoom-hover {
    transition: transform .2s;
    cursor: pointer;
}

.zoom-hover:hover {
    transform: scale(1.05);
}

body {
    zoom: 80%;
    margin: 0;
    padding: 12vh;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: black;
    position: relative;
    overflow: hidden;
}

img {
    z-index: 3;
    font-size: 80px;
    color: yellow;
    margin-bottom: 20px;
    position: relative;
    filter: drop-shadow(5px 5px 5px #222);
}

svg {
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

a:link {
    color: #ffd800
}

a:visited {
    color: #ffd800;
}

a:hover {
    color: white;
}

a:active {
    color: #ffd800;
}

a:link,
a:visited {
    text-decoration: none;
}