* {box-sizing: border-box;}

body, html { 
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-weight: 200;
    background-color: black;
    color: white;
}

#wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

section ul,
section ol {
    padding-inline-start: 18px !important;
    margin: 0;
}

li.collapsed-title {
    margin-left: -18px;
    cursor: pointer;
}
li.collapsed-title::before {
    width: 0;
    height: 0; 
}

.collapsed-title {
    color: white !important;
    opacity: var(--opacity-1);
    display: inline-block;
    text-decoration: underline;
}
.collapsed-title:hover {
    opacity: 1;
}

.collapsed-text {
    display: none !important;
}

.collapsed-text.open {
    display: list-item !important;
}

ul li,
ul li span {
    color: black !important;
}

.link {
    color: white !important;
    opacity: var(--opacity-1);
    display: inline-block;
}
.link:hover {
    opacity: 1;
}


#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  #loading img {
    width: 300px;
  }