html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}
body {
    display:flex;
}
img, svg {
    width: 75%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: auto;
}
path.cls-2 {
    opacity: 0;
    transform: rotateY(0);
    transform-origin: 33%;
    animation: logo 2.5s forwards;
    animation-delay: 1s;
}
path.cls-4 {
    opacity: 0;
    transform: rotateY(0);
    transform-origin: 44%;
    animation: logo 2s forwards;
    animation-delay: 1.5s;
}
path.cls-3 {
    transform: scale(5);
    opacity: 0;
    animation: letters .75s forwards;
}
path.cls-3:nth-child(1) {
    animation-delay: 3s;
}
path.cls-3:nth-child(2) {
    animation-delay: 3.3s;
}
path.cls-3:nth-child(3) {
    animation-delay: 3.6s;
}
path.cls-3:nth-child(4) {
    animation-delay: 3.9s;
}
path.cls-3:nth-child(5) {
    animation-delay: 4.2s;
}
path.cls-3:nth-child(6) {
    animation-delay: 4.5s;
}
path.cls-1 {
    transform: scale(5);
    opacity: 0;
    animation: letters .75s forwards;
}
path.cls-1:nth-child(1) {
    animation-delay: 5.1s;
}
path.cls-1:nth-child(2) {
    animation-delay: 5.4s;
}
path.cls-1:nth-child(3) {
    animation-delay: 5.7s;
}

@keyframes logo {
    from {
        transform: rotateY(0);
        opacity: 0
    }
    to {
        transform: rotateY(1080deg);
        opacity: 1;
    }
}

@keyframes letters {
    from {
        transform: scale(5);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}