body {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: 200;
  color: #f8f9fa;
  background-color: #343a40;
  box-shadow: inset 0 6rem 12rem rgba(0, 0, 0, .8);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Roboto Slab', Helvetica, Arial, sans-serif;
  font-weight: 200;
}

.page-title {
  margin-bottom: 3rem;
}

.page {
  height: 100%;
  min-height: 100vh;
  padding: 2rem;
}

main {
  max-width: 1000px;
}

.homepage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sidebar-menu {
  grid-area: sidebar;
  padding-left: .25rem;
  margin-bottom: 1.5rem;
}

.main-nav {
  display: flex;
  flex-direction: column;
  background-color: #212529;
  border: 1px solid #000;
}

@media screen and (min-width: 992px) {
  .page-layout {
    display: grid;
    grid-template-areas: "sidebar main";
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    gap: 1.5rem;
  }

  .homepage {
    display: block;
  }

  .sidebar-menu {
    position: sticky;
    top: 2rem;
    display: block !important;
    height: calc(100vh - 10rem);
    overflow-y: auto;
  }

  .main-nav {
    background-color: transparent;
    border: none;
  }
}

a {
  color: #fff;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

.menu-btn {
  background-color: #000;
  color: #fff;
  border-color: #000;
  border-radius: 0;
  font-weight: 300;
}

.menu-btn:hover,
.menu-btn:active,
.menu-btn:focus,
.menu-btn:focus-visible {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.nav-link {
  color: #fff;
  border-radius: .25rem;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
  text-decoration: none;
  background-color: #000;
  transition: all .25s ease-in-out;
}

.nav-link.active {
  margin-left: -2px;
  border-left: 2px solid #fff;
  border-radius: 0;
}

.music-list-item {
  padding: 2rem 0 1rem 0;
  border-bottom: 1px solid #6c757d;
}

.album-art {
  max-width: 150px;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.face {
  max-width: 200px;
  border-radius: 50%;
  overflow: hidden;
}

footer {
  padding: 8rem 0 1rem;
  font-size: .75rem;
  text-align: center;
}