
html, body {

background: #040120;
  color: white;
  text-align: center;
  font-family: 'Press Start 2P';


}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

canvas {
  max-width: 100%;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.player {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}


@keyframes pulse {
  0% {
    transform: scale(1);
    color: #fff;
  }
  50% {
    transform: scale(3.2);
    color: #C208FF;
  }
  100% {
    transform: scale(1);
    color: #fff;
  }
}

.player {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 10px;
  border-radius: 20px;
}

.player #speaker-icon {
  cursor: pointer;
  background: linear-gradient(90deg, #C208FF, #5D6FF9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.player #speaker-icon.playing {
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
