.logo {
    max-width:200px;
}

.throbber {
    animation: throb 2s infinite;
}


@keyframes throb {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}