/* ---- CSS Reset (lightweight) ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Here's the deal: I want the homepage centered, the projects page off to the left, and the music page centered */

/* global content settings */
.site-header,
.content,
.site-footer {
  margin: 0 auto;
  text-align: center;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

/* global header settings */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 2rem;
  background: #8DE1EB;
  font: bold 1.5rem 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

/* technically the "middle part of the page" */
.content {
  background: linear-gradient(180deg,rgba(141, 225, 235, 1) 0%, rgba(81, 177, 214, 1) 100%);
  padding: 2rem;
}

.site-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  background: #51b1d6;
}

/* ---- Typography ---- */
h1 {
  font: bold 3rem/1.2 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  margin-bottom: 0;
}

h2 {
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

h3 {
  margin-bottom: 0.25rem;
}

body, p {
  margin-top: 0;
  font: normal 1rem/1.6 'Inter', sans-serif;
}



/* trying to fix bulleted lists on homepage*/
.container {
  text-align: center;
}

ul.centered-list {
  display: inline-block; /* Allows the margin: auto to work */
  text-align: left;     /* Reverts text alignment inside the list to left */
  margin-left: auto;    /* Centers the list block itself */
  margin-right: auto;
}

/* ---- Projects page specifics ---- */
.project-list {
  list-style: none;
  padding: 0;
}

.project-list li {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid #ddd;
}

.project-list a {
  text-decoration: none;
  color: #0057ff;
}

.project-list a:hover {
  text-decoration: underline;
}

a.active {
  font-weight: bold;
  text-decoration: underline;
}