* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  background-image: url(../images/wireframe-sphere.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-color: #f5f5db;
}

body {
  width: 100vw;
  height: 100vh;
}

h1 {
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  line-height: 90%;
}

h2 {
  font-family: "Lora", serif;
  color: #7a4d59;
  font-size: 3rem;
}

p {
  font-family: "Lora", serif;
  font-size: 1rem;
}

.nav-bar {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 10vh;
  padding: 1rem;
  background-color: #f5f5db;
  display: flex;
  gap: 5vw;
  font-family: sans-serif;
  font-size: calc(0.5rem + 2vw);
  justify-items: center; /* Center div within column */
}

.nav-bar div {
  width: 75%;
  display: flex;
  border-radius: 10px;
  align-items: center; /* Center text horizontally and vertically within div */
  justify-content: center;
}

.nav-bar a {
  flex: 1;
  text-decoration: none;
  outline: none;
  text-align: center;
  line-height: 3;
  color: black;
}

.nav-bar a:hover {
  color: #7a4d59;
  font-weight: bold;
}

.active a {
  width: 75%;
  display: flex;
  border-radius: 10px;
  align-items: center; /* Center text horizontally and vertically within div */
  justify-content: center;
  background-color: #e6ded3;
  color: #7a4d59;
  font-weight: bold;
}

section {
  margin-top: 10vh;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

.audio-and-title-container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem;
  height: 100%;
}

.project-container {
}

.project-title-and-text-accordion {
  margin-bottom: 0.5rem;
  color: #7a4d59;
  background-color: #f5f5db;
  background-image: url(../images/wireframe-sphere.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 1rem;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
}

.active-accordion,
.project-title-and-text-accordion:hover {
  background-color: #e6ded3;
  border-radius: 10px;
}

.project-title-and-text-accordion::after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 1rem;
  color: #777;
  height: fit-content;
  width: fit-content;
}

.active-accordion::after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.panel {
  display: none;
  overflow: hidden;
  text-align: left;
  padding: 0 0.5rem 0.5rem 0.5rem;
}

.audio-container {
  grid-column-start: 1;
}

.video-container {
  grid-column-start: 1;
}

video {
  border-radius: 10px;
  margin: auto;
  width: 100%;
  display: block;
}

.videos-container {
  margin-top: 1rem;
  /* display: flex; */
  width: 100%;
  gap: 1rem;
}

.video-container {
  width: 100%;
  /* height: 100px; */
  flex: 1;
  margin-bottom: 1rem;
}

video[poster] {
  object-fit: cover;
}


.track-title-container {
  display: flex;
  grid-column-start: 2;
  align-items: center;
  justify-content: left;
  border-radius: 10px;
}

.track-title-container h2 {
  font-size: 1rem;
}

audio {
  border-radius: 10px;
  margin: auto;
  width: 100%;
  display: block;
}
