body
{
  background: linear-gradient(to right, rgb(237, 161, 174), rgb(255, 96, 22));
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  font-family: "Paprika", system-ui;
  color: white;
  text-shadow: 0 0 4px black;
}

h3
{
  margin: 10px auto;
}

main
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.music-card
{
  background: black;
  outline: 4px solid rgb(230, 0, 255);
  outline-offset: -2px;
  display: flex;
  width: 320px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 12px;
  padding: 10px;
  padding-top: 18px;
  box-shadow: 0 0 20px black;

}

.poster
{
  width: 300px;
  align-self: center;
  text-align: center;
}

.poster img
{
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: 4px solid white;
}


@media (max-width: 600px)
{
  main
  {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 601px) and (max-width: 949px)
{
  main
  {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 950px)
{
  main
  {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


