/* Restore the globe rotation on smartphones. */
@media(max-width:680px){
  .earth-photo{
    animation:earthSpin 80s linear infinite!important;
    transform-origin:50% 50%;
    will-change:transform;
  }
}

@media(max-width:680px) and (prefers-reduced-motion:reduce){
  .earth-photo{
    animation:none!important;
  }
}
