* {
  margin: 0;
  padding: 0;
  font-family: "Pixelated MS Sans Serif";
}

body {
  background: black;
}

.sparkles {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../assets/sparkles.gif);
  z-index: -1;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  z-index: -2;
}

main {
  padding: 30px 40px;
}

main p {
  color: white;
  font-size: 16px;
  /* font-family: Arial, Helvetica, sans-serif; */
}

@font-face {
  font-family: 'Dreamer';
  src: url(assets/DreamerTM-Regular.ttf);
}

.player img {
  width: 400px;
  position: fixed;
  left: -30px;
  animation: move 1s infinite;
  animation-direction: alternate-reverse;
  filter: grayscale();
}

.collection {
  margin-left: 400px;
}

@media (max-width: 576px) {
  .collection {
    margin-left: 0;
  }
}

table {
  background: none;
  color: white;
}

tr {
  display: flex;
  width: 850px;
  flex-wrap: wrap;
}

table>tbody>tr>td {
  width: 140px;
  box-sizing: border-box;
  background: rgba(250, 249, 239, 0.2);
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  text-wrap: wrap;
  padding: 4px;
  height: unset;
  font-family: "Pixelated MS Sans Serif";
}

table>tbody>tr>td p {
  font-size: 11px;
}

tr td img {
  width: 100%;
  height: 140px;
}

h2 {
  color: yellow;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  text-decoration: underline;
}

.section {
  margin-bottom: 20px;
}

.kpop ul li {
  margin-left: 25px;
}

@keyframes move {
  from {
    transform: rotate(10deg)
  }

  to {
    transform: rotate(0deg)
  }
}

.info {
  transform: rotate(-10deg);
  padding: 20px;
  border-radius: 50%;
  position: fixed;
  top: 450px;
  left: 80px;
  width: fit-content;
  height: fit-content;
  background: rgb(250, 189, 57);
  z-index: 1;
}

.window {
  position: fixed;
  left: 100px;
  bottom: 30px;
  z-index: 0;
}

@media (max-width: 576px) {
  .window {
    display: none;
  }
}