.logo {
  font-size: 42px;
  font-weight: bold;
  color: #00ffd5;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  from { text-shadow: 0 0 5px #00ffd5; }
  to { text-shadow: 0 0 25px #00ffd5; }
}
