
body {
    user-select: none;
    background-color: #211018;
    color: #F38D93; 
    font-family: "ImFell";
    margin: 10px 400px 20px 100px;
    line-height: 1.8;
}

#all {
    display: flex;
    flex-direction: row;
}

/* navbar */

#nav {
    position: fixed;
    max-width: 300px;
    height: auto;
    padding: 80px 50px;
    display: inline-block;
}

summary {
    color:  #994C53;
    cursor: pointer;
}

summary:hover {
    text-decoration: underline;
    color: #F38D93;
}

summary:checked {
    text-decoration: underline;
    color: #F38D93;
}

summary::marker {
  content: "";
}

ul {
    list-style-type: "\2726";
    padding-left: 10px;
    color: #994C53;
}

li {
    padding-left: 10px;
}

.underlist {
    font-style: italic;
    list-style-type: none;
}

#about:hover {
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: #994C53;
}

a:hover {
    color: #F38D93;
}

/*--------------------------------------*/

.nymph {
    font-family: "Nymphette";
    font-size: 20px;
    list-style-type: none;
}

#main {
    position: absolute;
    width: 500px;
    height: auto;
    left: 350px;
}

/* header */

h1 {
    font-family: "FaithCollapsing";
    color: #F5B2A3;
    font-weight: 200;
}

h2 {
    font-weight: 200;
    color: #C06A69;
}

h3 {
    font-family: "VT323"; 
    font-weight: 100;
    font-size: 16px;
    color: #C06A69;
}

/* footer */

footer {
    position: absolute;
    color: #4F3039;
    width: 500px;
    height: auto;
    top: 100%; 
    text-align: left;
    padding: 20px 0px;
    font-family: "VT323";
}

/* credits*/

.creditul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: #F5B2A3;
}

.creditli {
    display: inline-block; 
    padding: 0px 10px;
    margin: 10px 10px;
}


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 80px;
  background-color: #F38D93;
  color: #211018;
  text-align: center;
  padding: 0px 10px;
  margin: 15px 10px 0px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
}



