#animatedLogo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -5em;
    margin: 0 auto;
    display: flex;
    stroke: #222;
    stroke-miterlimit: 6;
}

.Animate-Draw {
    fill-opacity: 0;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-name: DrawLine, FadeStroke, FillIn;
    animation-duration: 2s, 1s, 1s;
    animation-delay: 3.5, 3.5s, 3.5s;
}

#Draw-Mark {
    stroke-dashArray: 1100;
    stroke-dashoffset: 1100;
}

#Draw-Frame {
    animation-delay: .5s, 1s, 1.5s;
    animation-duration: 3s, 3s, 3s;
    stroke-dashArray: 1100;
    stroke-dashoffset: 1100;
}

@keyframes DrawLine {
    to {
        stroke-dashOffset: 0;
    }
}

@keyframes FadeStroke {
    to {
        stroke-opacity: 0;
    }
}

@keyframes FillIn {
    from {
        fill-opacity: 0;
    }
    to {
        fill-opacity: 1;
    }
}