
body {
	background: #212121;
	color: white;
	font-family: "Flow Circular", system-ui;
	font-weight: 400;
	font-style: normal;
}

#intro-pages-content {
	margin: 50px auto;
	display: flex;
	width: 800px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    row-gap: 30px;
}

#intro-pages-content h1 {
	font-size: 40pt;
}

#intro-pages-content h2 {
	font-size: 32pt;
}

#intro-pages-content p {
	font-size: 11pt;
	margin-top: 50px;
	width: 370px;
	text-align: justify;
}

input[type=submit] {
    padding: 20px;
    background:#1db954; 
    color: #121212;
    border:0 none;
    cursor:pointer;
    font-size: 12pt;
    border-radius: 15px;
    letter-spacing: 1px;
    font-weight: bold;
}

/* ------------------------ */
.artists-container {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto;
  grid-gap: 75px;
}

.artist {
  min-height: 100%;
  display: flex;
  flex-direction: row;
  flex-flow: row;
  text-decoration: none;
  position: relative;
  top: 0;
  transition: all .1s ease-in;
  min-height: 250px;
  max-height: 250px;
}

.card {
  flex: 0 0 35%;
  color: inherit;
  text-decoration: none;
}

.thumbnail {
  background-size: cover;
  background-position: center center;
  height: 100%;
  display: flex;
}

.thumbnail span {
	align-self: flex-end;
	font-size: 20pt;
  	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  	margin: 10px;
}

.tracks-container {
  display: flex;
  flex-direction: column;
  flex: 0 0 57.5%;
  margin-left: 2.5%;
  overflow-y: scroll;
}

.tracks-container > a {
  color: inherit;
  text-decoration: none;
  padding: 16px 24px;
  padding-top: 13px;
  border-bottom: 2px solid #535353;
  display: flex;
  justify-content: left;
  align-items: center;
  transition: all .25s ease-in;
}
.tracks-container > a:last-child {
  border-bottom: none;
}
.tracks-container > a:hover {
	background: #535353;
}