.logo {
    width: 48px;
    height: 48px;
    animation: rotate 8s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
