body {
  background: linear-gradient(90deg, black, rgb(32, 32, 32));
  color: white;
}

h1 {
  text-align: center;
}

#align {
  display: flex;
}

#align > div {
  flex: 1;
  display: inherit;
  flex-direction: column;
  align-items: center;
}

#player-options img {
  cursor: pointer;
}

img {
  width: 200px;
  opacity: 0.7;
  transition: transform 0.5s, filter 0.5s, opacity 0.3s;
}

#player-options img:hover:not(.desativado) {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.desativado {
  opacity: 0.3;
  filter: blur(5px);
}
