@font-face { 
    font-family: 'headline';
    src: url('fonts/prototype/Prototype.ttf') format('truetype');
}

@font-face { 
    font-family: 'listing';
    src: url('fonts/liberationsans/LiberationSans-Regular.ttf') format('truetype');
}

@font-face { 
    font-family: 'cont';
    src: url('fonts/nimbussansl/NimbusSanL-Regu.ttf') format('truetype');
}

@font-face{
    font-family: 'code';
    src: url('fonts/anonymus/AnonymousPro-Regular.ttf') format('truetype');
}

body{
    background: black;
    color: greenyellow;
}

#sidebox ul{
    padding-left: 9%;
}

#sidebox li{
    font-family: listing;
    font-size: 18pt;
    cursor: pointer;
}

#sidebox .mainPoint{
    margin-bottom: 2%;
    margin-left: 8%;
}

.contentDiv{
    display: none;
}
#wrapper{
    position: absolute;
    left: 0;
    top: 0;
    height: 80%;
    width: 99.5%;
}

#sidebox{
   font-family: listing;
   position: absolute;
   width: 20%;
   height: 100%;
   border-bottom: 2px solid;
}

#contentbox{
    font-family: cont;
    position: absolute;
    height: 100%;
    left: 20%;
    width: 80%;
    top: 0;
    border-left: 2px dashed;
    border-bottom: 2px solid;
}

#timelineHorizontal{
    position: absolute;
    width: 80%;
    height: 3%;
    border: 2px solid;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
}

.timelineDot{
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid;
    border-radius: 100%;
    z-index: 3;
    background: black;
    transform: translateY(-50%) translateX(-50%);
    top: 50%;
    overflow: hidden;
    cursor: pointer;
}

.timelineDotFill{    
    height: 100%;
    transition: all 0.3s;
    width: 0;
    background: linear-gradient(to right, green 0%, greenyellow 100%);
}

#timeLineFill{
    height: 100%;
    width: 0;
    background: linear-gradient(to right, green 0%, greenyellow 100%);
}

#question{
    position: absolute;
    display: block;
    margin-top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    font-size: 50pt;
}

#headline{
   position: absolute;
   text-align: center;
   font-family: headline;
   width: 100%;
   height: 10%;
   font-size: 40pt;
}

#headSpan{
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: block;
    left: 50%;
}

#content{
    position: absolute;
    top:10%;
    height: 90%;
    border-top: 2px solid;
    width: 100%;
}

#commandline{
    position: absolute;
    width: 100%;
    top: 95%;
    height: 5%;
    border-top: 1px solid;
    background-color: black;
}

#clh{
    position: absolute;
    width: 100%;
    top:50%;
    transform: translateY(-50%);
}

#clhc{
    font-family: monospace;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    white-space: nowrap; /* Keeps the content on a single line */
    letter-spacing: .15em; /* Adjust as needed */
    display: block;
    float: left;
}

#clc{
    display: block;
    max-width: 400px;
    white-space: nowrap;
}

#titlePage{
    position: absolute;
    text-align: center;
    top: 50%;
    left:50%;
    transform: translateY(-50%) translateX(-50%);
}

#mainTitle{
    font-family: headline;
    font-size: 50pt;
}

#loadAni{
    animation: loading 10s infinite;
    width: 50px;
}

@keyframes loading {
  from { filter: hue-rotate(0deg) saturate(200%); }
  to { filter: hue-rotate(360deg) saturate(200%); }
}

.mainPoint{
    list-style-image: url('img/open.png');
}

.mainPointActive{
    color: white;
    list-style-image: url('img/cur.png');
}

.mainPointActive > ul > li:not(.subPointActive):not(.mainPointDone){
    color: greenyellow;
    list-style-image: url('img/open.png');
}

.subPointActive{
    color: white;
    list-style-image: url('img/cur.png');
} 
   

.mainPointDone{
    color: greenyellow;
    list-style-image: url('img/done.png');
}