html, body {
  height: 100%;
  background-image: url('Sutus.png');
  color: green;
  font-family: "Ubuntu Mono", monospace;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
}
.name {
  font-size: 3em;
  text-align: center;
  margin: 10px 0;
  color: #ffffff;
  text-shadow: rgb(0, 0, 0) 0px 0px 7px;
}

.subtitle {
  font-size: 1.5em;
  text-align: center;
  margin: 10px 0;
  color: #ffffff;
  text-shadow: rgb(0, 0, 0) 0px 0px 7px;
}

body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-content {
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  padding: 20px;
  text-align: left;
}

.sections-container {
  width: 100%;
  box-sizing: border-box;
}

.section-wrapper {
  background-color: #000000;
  border: 1px solid green;
  border-radius: 5px;
  margin: 20px 0;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.section-wrapper.nested {
  margin: 10px 0;
}

.player-wrapper {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.player-wrapper iframe {
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
  border: none;
}

details {
  width: 100%;
}

summary {
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  outline: none;
}

summary::marker {
  content: "\25B6 "; /* triangle pointing right */
}

details[open] > summary::marker {
  content: "\25BC "; /* triangle pointing down */
}

details > div {
  opacity: 0;
  transition: opacity 0.3s ease;
}

details[open] > div {
  opacity: 1;
}

.logo-container {
  display: flex;
  justify-content: center;
}

.logo {
  margin-top: 20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-image: url('sergism.jpg');
  background-size: cover;
  background-position: center;
}

a {
  color: green;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

.smaller-text {
  font-size: 0.6em;
}

.music-projects-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}

.music-projects-column {
  list-style-type: none;
  padding: 0;
  flex: 1;
}

.music-projects-column:first-child {
  text-align: left;
}

.music-projects-column:last-child {
  text-align: right;
}

.music-projects-column li {
  padding: 5px 0;
}
