header .logo svg,
.logo-rounded svg {
    border-radius: 50%;
    width: 130px;
}

.logo svg .logo-part,
.logo-rounded svg .logo-part {
    opacity: 0;
    animation: logoFade 1.2s ease forwards;
    animation-fill-mode: both;
}

.logo svg .part-3,
.logo-rounded svg .part-3 { 
    animation-delay: 0s; 
}

.logo svg .part-1,
.logo-rounded svg .part-1 { 
    animation-delay: 0.3s; 
}

.logo svg .part-2,
.logo-rounded svg .part-2 { 
    animation-delay: 0.6s; 
}

@keyframes logoFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
