.songs,
.albums,
.playlists,
.artists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
}

@media (max-width: 1000px) {
  .songs,
  .playlists,
  .albums,
  .artists {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .songs,
  .playlists,
  .albums,
  .artists {
    grid-template-columns: 1fr;
  }
}

.songContainer,
.albumContainer,
.playlistContainer,
.artistContainer {
  border: 1.5px solid;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(238, 199, 241, 0.5);
  color: rgb(31, 45, 77);
}

.songContainer img,
.albumContainer img,
.playlistContainer img,
.artistContainer img {
  margin: 5%;
  width: 65%;
  aspect-ratio: 1/1;
}

.playlistContainer > form {
  width: 100%;
  height: 100%;
}

.playlistContainer > form > button {
  width: 100%;
  height: 100%;
}

button,
input[type="submit"],
input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

figcaption {
  margin-bottom: 15px;
  color: rgb(35, 17, 36);
}

h1 {
  text-indent: 10px;
  margin-bottom: 0%;
  color: rgb(238, 190, 242);
}

hr {
  margin: 0px;
  margin: 8px;
}
