@import url('https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Saira:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body, html {
    margin: 0;
    height: 100%;
    width: 100%;
    background: #0f0f0f;
    font-family: "Saira Extra Condensed";
    font-weight: 300;
    font-size: 20px;
    line-height: 21px;
}

/* HEADER & NAVBAR */

header {
  color: azure;
  font-size: 40px;
  line-height: 40px;
/*   background: lavenderblush; */
  font-style: italic;
  font-weight: 800;
  border-bottom: 1px solid white;
  padding: 2px 6px;
}

.highlight {
  color: tomato;
}

#navbar {
  height: auto;
  width: 100%;
  padding-right: 10px;
  background-color: rgba(0,0,0,0.8);
  position: fixed;
  bottom: 0;
}

.nav-flex {
  height: 10vw;
  width: 96%;
  margin: auto;
  padding-right: 4px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #BEB160;
  font-size: 6vw;
/*   font-style: italic; */
  font-weight: 600;
}

.nav-flex > div {
  cursor: pointer;
}

.nav-flex > div:hover {
  cursor: pointer;
  color: green;
  transition: 1s;
  transform: scale(1.2);
}

/* MAIN PAGES */

.main-page {
  color: white;
  margin-top: 10px;
}

#page-all-songs {
/*   display: none ; */
}

/* CONTAINERS */

#song {
  cursor: pointer;
  position: relative;
  background: rgba(50,50,50,0.5);
  height: auto;
  width: 96%;
  margin: auto;
  border: 1px solid rgba(50,50,50,1);
  border-radius: 0px 0px 12px 12px;
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

#song:hover {
  transition: 1s;
  transform: scale(1.05);
}

#song-title {
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  padding: 1% 0% 0% 1%;
  
}

#project-title {
  font-size: 16px;
  position: absolute;
  top: 1%;
  right: 1%;
}

#more-button {
  position: absolute;
  top: 45%;
  right: 1%;
}

#songwriter-data-area {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 0 0 4px;
  width: 96%;
}

.data-pill {
/*   background: blue; */
  display: flex;
  padding-bottom: 8px;
  margin-right: 8px;
}

.data-pill > .left-pill {
/*   background: red; */
/*   border: 1px solid white; */
  border-right: none;
  padding: 2px 8px;
  border-radius: 8px 0 0 8px;
  font-size: 16px;
  line-height: 16px;
  font-style: italic;
  font-weight: 600;
}

.data-pill > .right-pill {
/*   background: green; */
/*   border: 1px solid white; */
  padding: 2px 8px 2px 2px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  line-height: 16px;
  font-style: italic;
  font-weight: 600;
}

.status-color-complete {
  border: 1px solid #50DD4F;
  color: #50DD4F;
}

.status-color-complete-invert {
  border: 1px solid #50DD4F;
  background: #50DD4F;
  color: black;
}

.status-color-progressing {
  border: 1px solid #BEB260;
  color: #BEB260;
}

.status-color-progressing-invert {
  border: 1px solid #BEB260;
  background: #BEB260;
  color: black;
}

.status-color-warning {
  border: 1px solid #FF4E4E;
  color: #FF4E4E;
}

.status-color-warning-invert {
  border: 1px solid #FF4E4E;
  background: #FF4E4E;
  color: black;
}

.hidden {
  display: none;
}

#page-song {
  margin: 8px 8px;
  font-weight: 600;
}

#page-song > #song_title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 200;
  font-style: italic;
}

#page-song > #project {
  font-size: 24px;
  line-height: 24px;
  font-weight: 200;
  font-style: italic;
}

#page-song > #song_data {
  font-size: 22px;
  line-height: 28px;
  font-weight: 200;
  border: 1px solid grey;
}

#songwriters {
  font-weight: 200;
}

.writer {
  background: rgba(0,0,0,0.8);
  border: 1px solid grey;
  margin-bottom: 8px;
  padding: 8px;
}

.writer-docs {
  display: flex;
}

.writer-doc-pill {
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 20px;
  font-style: italic;
  font-weight: 600;
  margin: 4px;
}

#song_data {
  padding: 8px;
}

.pill {
  cursor: pointer;
  border: 1px solid white;
  width: 40%;
  text-align: center;
  border-radius: 8px;  
}

.pill:hover {
  transition: 1s;
  transform: scale(1.1);
}


@media screen and (min-width: 480px) {
  .nav-flex {
    padding-right: 10px;
    height: 4vw;
    font-size: 2vw;
  }
}