
html.aAX {
    overflow: hidden;
}

body {
  background: #000000;
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.wrapper {

    display: flex;
    justify-content: center;
    align-items: center;
	min-height: 100vh;
	border: 0px solid red;
}


.leftEarlug {

	stroke: #ffffff;
	stroke-width: 16;	
	fill: #ffffff;
	animation: pulse-stroke .6s infinite;
	_animation: shake 1s infinite;
	
}

.rightEarlug {
	animation: pulse-stroke .6s infinite;
	_animation: shake 1s infinite;
	stroke: #ffffff;
	stroke-width: 16;	
	fill: #ffffff;
}

.earphones {
	stroke: #ff0000;
	stroke-width: 0;	
	fill: #ffffff;
	
	
  /* Start the shake animation and make the animation last for 0.5 seconds */
  _animation: shake 1s;

  /* When the animation is finished, start again */
  _animation-iteration-count: infinite;	
}

.shake {
	
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 1s;

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;	
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-.3deg); }
  20% { transform: translate(-3px, 0px) rotate(.3deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(.3deg); }
  50% { transform: translate(-1px, 2px) rotate(-.3deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-.3deg); }
  80% { transform: translate(-1px, -1px) rotate(.3deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-.3deg); }
}

@keyframes pulse-stroke {
	0% {
		stroke: #ffffff;
		stroke-width: 0;	
	}
	
	70% {
		stroke: #ffffff;
		stroke-width: 16;		
	}
	
	100% {
		stroke: #ffffff;
		stroke-width: 12;
	}
	

}

@keyframes pulse-white {
	0% {
		transform: scale(.98);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
	
	100% {
		transform: scale(.98);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}




