.logo_no_disco{
  width: 200px;
  height: 200px;
  overflow: hidden;
  animation: scaleInOut 2s infinite alternate;
}

@keyframes scaleInOut {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

.logo_discom-pc {

  animation: rotate 800s linear;
}

.logo_discom {

  animation: rotate 800s linear;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(108000deg); }
}