body {
  background-color: #121212;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-pulse-wrapper {
  position: relative;
  width: 150px;
  height: auto;
}

.logo {
  position: relative;
  width: 150px;
  height: auto;
  z-index: 2;
}

/* Pulse effect */
.logo-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: auto;
  z-index: 1;
  opacity: 0.6;
  animation: pulse-out 2s ease-out infinite;
}

@keyframes pulse-out {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
