html, body {
  background-image: url('/Visuals/Images/StillSea.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #e0ebff;
  font-family: "Cormorant Garamond", sans-serif;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  width: 100%;
  min-height: 100vh;
}

/* ---------------------------------------------- */

.Title {
  font-size: 2rem;
  color: white;
  text-align: center;
  margin: 0 auto;
  margin-top: 4vh;
  max-width: 95vw;
}

/* ---------------------------------------------- */

.List { 
  font-size: 2rem;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  text-decoration: none;
  max-width: 50rem;
}

.List > li {
  cursor: pointer; 
  padding: 0.5rem 0; 
  list-style-type: none; 
  transition: color 0.2s ease;
}

.List > li::before {
  content: "🕯️";
  margin-right: 0.5rem;
}

.List > li:hover {
  text-decoration: underline; 
  color: #6377ba;
}

/* ---------------------------------------------- */

.Main {
  color: #a6b4de;
  font-size: 1.4vw;
  content: rgba(255, 255, 255, 0.7); 
  max-width: 85vw;
  margin: 0 auto;
  margin-top: 0.1vh;
  margin-bottom: 3rem;
  height: 0;
  opacity: 0;
  transition: height 0.5s ease-out, opacity 0.5s ease-out, all 0.3s ease;
  display: none; 
  overflow: hidden;
  text-align: center;
  padding: 1rem 0;
}

.Main.show { 
  display: block;
  opacity: 1;
  height: auto;
}

.Main li {
  list-style-type: none; 
  margin-bottom: 1.5rem;  
}

.Main li::before {
  content: ""; 
  margin-right: 0.5rem;
}

/* ---------------------------------------------- */

.Ref {
  font-size: 0.8vw;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  margin-top: 0.8vh;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------- */

.Comment {
  font-size: 1.1vw;
  color: rgba(255, 255, 255, 0.759);
  margin-top: -1.3vh;
  text-align: center;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------- */

a {
  color: lightblue; 
  text-decoration: none; 
}

a:visited {
  color: pink;
  text-decoration: none; 
  font-weight: bold;
}

a:hover { 
  text-decoration: underline;
}
