* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    width: 100%;
    height: 100vh;
}

#logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 80%;
    max-width: 500px;
}

#logo svg {
    width: 100%;
}

#logo path.border {
    stroke-dashoffset: 0;
    stroke-dasharray: 2192.583251953125;
    animation-name: border1;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
}

@keyframes border1 {
    0% {
        stroke-dashoffset: 2192.583251953125;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

g.nateg path {
    transform: translateY(-10%);
    opacity: 0;
    transition: ease all 0.5s;
}

g.nateg path.fadeIn {
    transform: translateY(0%);
    opacity: 1;
}

g.label {
    transform: translateX(-100%);
    transition: ease all .8s;
}

g.label.fadeIn {
    transform: translateX(0%);
}

.tf,
.to,
.tr,
.tl,
.te,
.ts,
.ts1 {
    transform: scale(0);
    transition: ease all 0.5s;
}

.tf.fadeIn,
.to.fadeIn,
.tr.fadeIn,
.tl.fadeIn,
.te.fadeIn,
.ts.fadeIn,
.ts1.fadeIn {
    transform: scale(1);
}

g.tag {
    transform: translateY(-15px);
    transition: ease all 1s;
    opacity: 0;
}

g.tag.fadeIn {
    transform: translateX(0%);
    opacity: 1;
    animation-name: ptag;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes ptag {
    0% {
        transform: translateY(0px) rotateX( 0deg);
    }
    50% {
        transform: translateY(10px) rotateX( -25deg);
    }
    100% {
        transform: translateY(0px) rotateX( 0deg);
    }
}

#logo g.shapes path:nth-child(1) {
    transform: translateX(-80%)translateY(0%);
    transition: ease all 0.25s;
}
#logo g.shapes path:nth-child(2) {
    transform: translateX(0%)translateY(-180%);
    transition: ease all 0.25s;
}
#logo g.shapes path:nth-child(3) {
    transform: translateX(80%)translateY(5%);
    transition: ease all 0.25s;
}
#logo g.shapes path:nth-child(4) {
    transform: translateX(0%)translateY(180%);
    transition: ease all 0.25s;
}

#logo g.shapes path.fadeIn{
    transform: translateX(10%)translateY(5%);
}

#logo g.shapes path.fadeIn.animated{
    opacity: 0;
}

h1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    z-index: 999;
    font-size: 120px;
    transform: rotate(-25deg);
    opacity: 0.05;
    font-family: monospace;
    line-height: 1;
    margin: auto;
    text-align: center;
    z-index: 1;
}