/* CSS styling for the interactive logo */
#logo {
  width: 200px;
  height: 200px;
  background-color: #f0f0f0;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

/* CSS keyframe animation for the logo */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
