body {
  background: #000 url(images/sepia-filter-bg.jpg) no-repeat top right fixed;
  background-size: cover;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: 1000;
  display: flex;
  background-color: rgba(0, 0, 0, 0.9);
}

h1 {
  color: #CCC;
  text-align: center;
  font-weight: 200;
  font-size: 2.5rem;
  margin-top: 0rem;
  margin-bottom: 2rem;
  font-family: "Jolly Lodger", system-ui;
}

input[type="text"] {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #333;
  font-family: "Inter", sans-serif;
}

button {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #333;
  background-color: #444;
  color: #EFEFEF;
}

audio {
  width: 100%;
  margin: 10px 0;
  border-radius: 5px;
  padding: 5px;
  height: 30px;
}
/* Styling for WebKit browsers (Chrome, Safari) */
audio::-webkit-media-controls-panel {
  background-color: #b94c1d; /* Spotify-like green */
  border-radius: 5px;
  padding: 5px;
}
audio::-webkit-media-controls-play-button {
  background-color: #c86337;
  border-radius: 50%;
}
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  color: #fff;
  font-size: 12px;
}
audio::-webkit-media-controls-volume-slider {
  background-color: #b94c1d;
  border-radius: 5px;
}
/* Firefox and others may ignore some of these */
audio::-moz-range-track {
  background-color: #c86337;
}
audio::-moz-range-thumb {
  background-color: #c86337;
  border-radius: 50%;
}

ul.nav-links {
  list-style: none;
  padding: 0;
  display: none;
  justify-content: center;
}

ul.nav-links li {
  margin: 0 1rem;
}

ul.nav-links li a {
  color: #999;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.container {
  position: relative;
  margin-top: 250px;
  padding: 1rem;
  overflow-y: auto;
  z-index: 500;
}

.soundcloud-container {
  max-width: 600px;
  margin: 0px auto;
  padding: 1rem;
  border-radius: 20px;
  background-color: rgba(25, 25, 25, .85);
  border: 1px solid #222;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.album {
  display: flex;
  flex-direction: row;
  margin: 0px auto;
  max-width: 600px;
  background-color: rgba(0, 0, 0, .85);
  font-weight: 200;
  padding: 1rem;
  border: 1px solid #222;
  position: relative;
}

.album .buy {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 1rem;
}

.album .buy button {
  margin-left: 1rem;
}

.album h3 {
  font-size: 1.3rem;
  font-weight: 300;
  margin: 1rem 0;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #444;
}

.album .track-list {
  margin: 0;
  padding-left: 3rem;
}

.album .track-list li {
  margin-bottom: 0.5rem;
}

.album-cover {
  background: url(./images/dark-trees.jpg) no-repeat center center;
  background-size: cover;
  width: 250px;
  min-height: 250px;
  max-height: 250px;
}

.album-cover img {
  width: 250px;
  height: auto;
}
.album-info {
  color: #CCC;
  padding-left: 1rem;
}
.album-info .release-date {
  font-size: 1rem;
  color: #999;
}
.album-info h1 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  font-weight: 300;
}
.album-info p {
  font-size: 1.2rem;
  color: #ccc;
  margin: 0.2rem 0;
}

.logo {
  margin: 3rem auto 1rem auto;
}

/*
.logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 550px;
  height: auto;
}
  */