/* v1.21 */
/* @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200&familyOpen+Sans&family=Roboto&family=Oswald:wght@700&family=Raleway:wght@100;300;400;500;600&family=Sen:wght@400;700;800&display=swap'); */
/* importing too many fonts - narrow it down */
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200&family=Oswald:wght@700&family=Raleway:wght@100;300;400;500;600&display=swap");
* {
  box-sizing: border-box;
  /* border: 1px solid red; */
}

html, body {
  height: 100%;
  /* scrollbar-gutter: stable; */
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color: #1E2121;
  color: #f1f1f4;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
  padding: 0.5em 0;
  background-color: #2E3333;
  color: #9f9fa0;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.75rem;
  text-align: center;
  border-radius: 1em;
  overflow: visible;
}

.contentarea {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0em 1em;
}

.card-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: clamp(340px, 80%, 700px);
  margin: 0 auto;
  padding: 0 0 2em 0;
  /* min-height: 100%; */
}

.albumimage {
  width: 100%;
  margin: auto;
  background-color: #839798;
}

.albumimage > img {
  max-width: 100%;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.card {
  display: flex;
  flex-direction: row;
  background-color: #3C4242;
  width: 100%;
  margin: 0.25em auto;
  padding: 1em;
  padding-right: 1em;
  border-radius: 0.5em;
  justify-content: space-between;
  align-content: center;
}

.card--player {
  width: 100%;
  padding: 0;
  margin: auto;
}

.card--header {
  background-color: #586566;
  margin-top: 0.5em;
  padding: 0em;
  justify-content: center;
  line-height: 2em;
}

.card > img {
  width: 130px;
  align-self: center;
  filter: grayscale(1);
}

.card-button {
  background-color: #586566;
  border: 1px solid #42484d;
  margin: auto 0;
  padding: 0.5em 1em;
  border-radius: 0.25em;
  font-family: "Raleway";
  font-weight: 500;
}

.card-button:hover, .card-button:active {
  background-color: #839798;
}

.card-button > a {
  text-decoration: none;
  color: #f1f1f4;
}

.card-button > a:visited {
  text-decoration: none;
  color: #f1f1f4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald";
  font-weight: 700; /* Sen comes in 400, 700, and 800 */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -1px;
  opacity: 90%;
  text-align: center;
}

p {
  font-family: "Raleway";
  font-weight: 400;
  /* line-height: 19px; */
  /* padding-top: 10px; */
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}/*# sourceMappingURL=style.css.map */