.center.loaded {
    animation: insideToOut 0.5s ease-out forwards;
    transform: scale(1);
}
.links a, .links h4 {
    opacity: 0;
    transform: scale(0);
}
.center.loaded .links a, .center.loaded .links h4 {
    animation: insideToOut 0.5s ease-out forwards;
    animation-delay: 0.1s;
}
.center.loaded h1 {
    animation: insideToOut 0.5s ease-out forwards;
}
@keyframes insideToOut {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}