@import url("../fonts/fonts.css");

header {
  display: flex;
  gap: 72px;
  text-align: center;
  position: relative;
  flex-wrap: wrap;
  /* justify-content: center; */
}

header h1 {
  font-family: "Playfair";
  font-size: 56px;
  text-transform: uppercase;
}

header p {
  font-family: "Now";
  font-size: 22px;
}

header img {
  height: 196px;
  margin-left: 14%;
}

#back {
  height: 20px;
  display: flex;
}

#backlink {
  background-color: #25bd54;
  height: 40px;
  align-content: center;
  padding: 0 10px;
  color: black;
  text-decoration: none;
  font-family: "Now";
  font-size: 22px;
  margin-top: 28px;
}

.triangle {
  width: 0px;
  height: 10px;
  border-style: solid;
  border-width: 0 20px 30px 20px;
  border-color: transparent transparent #25bd54 transparent;
  transform: rotate(270deg);
  margin-top: 28px;
  margin-left: 23px;
}

main {
  display: flex;
  flex-direction: row;
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
  gap: 40px;
}

main > div {
  margin: auto;
}

main h1 {
  font-family: "Playfair";
  text-transform: uppercase;
  font-size: 48px;
}

#songs {
  width: 20%;
  min-width: 300px;
  margin: auto;
}

#albums {
  flex-grow: 1;
  min-width: 260px;
  background-color: #ecebe9;
  align-content: center;
}

ol {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.song {
  display: flex;
}

.song span {
  display: inline-block;
  align-self: center;
  margin-left: 12px;
  font-family: "Now";
  font-size: 22px;
  text-align: left;
}

#albumlist {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.album {
  display: flex;
  flex-direction: column;
}

.album img {
  margin-bottom: 12px;
}
