/* Example CSS file */ 
body{
    font-family: io;
   
    font-size: .8vw;
    background-color: whitesmoke;
}

::selection{
    background-color: var(--c2);
    color: white;
}

:root{
    --c1 : rgb(58, 58, 59);
    --c2 : rgb(247, 102, 102);
    --c3 : rgb(158, 158, 156);
}


pre{
    background-color: var(--c1);
    font-family: whois;
    color: white;
    font-size: .8vw;
}



em{
    font-style: italic;
}

.ab{
    font-family: ab;
    color: var(--c1);
}

.big{
    font-size: 15vh;
}

.big2{
    font-size: 50vh;
}

.center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

#FS{
    display: block;
    position: fixed;
    cursor: pointer;
    bottom: 2vw;
    transition: .1s;
    color: rgb(120, 252, 149);
    right: 1%;
    padding: 1vh;
    font-size: 2vw;
}

#FS:hover{
    font-size: 2.5vw;
}

#intro{
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 3;
    height: 20vh;
    margin: 0vh 0;
    margin-bottom: 1vh;
    width: calc(50vw - 2vh);
   
    border-radius: 35px;
}


#title{
    display: block;
    position: relative;
    text-align-last: justify;
    background-color: var(--c1);
   color: white;
    padding: .5vw 1vw;
    font-family: junicode;
    margin-bottom: 1vw;
    width: 48vw;
}

#title span{
    position: relative;
    display: inline-block;
}

#nav{
  display: block;
  text-align-last: justify;
  width: 48vw;
  margin: 0 1vw;
  position: relative;

}

.navItem{
    display: inline-block;
   

    transition: .1s;
    border-radius: 20px;
    cursor: pointer;
}

.navItem::after{
    content: ' )';
    color: var(--c1);
    opacity: 0;
   }
   .navItem::before{
       content: '( ';
       color: var(--c1);
       opacity: 0;
      }

.navItem:hover::after{
    opacity: 1;
}
.navItem:hover::before{
    opacity: 1;
   }
   

#subNav{
    display: block;
    text-align: left;
    width: 50vw;
    padding: 1vw 0;
}

.subMenuItem{
    display: block;
    cursor: pointer;
    padding: 2px 0;
    padding-left: 1vw;
    transition: .5s;
}

.subMenuItem:hover{
    transition: .1s;
    color: var(--c3);
    background-color: var(--c1);
    padding-left: 2vw;
}


#pageContent{
    display: block;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 50%;
    margin: 0vh;
    transition: .2s;
    padding: .5vw 1vw;
    width: 48%;
    background-color: var(--c3);
    height: 100vh;

}

#animInt{
    font-family: whois;
    color: rgb(120, 252, 149);
    display: block;
    z-index: 10;
    text-align: center;
}


#pageContent img{
    max-width: 100%;
    text-align: center;
    display: block;
    max-height: 80vh;
    margin: 1vw auto;
    width: auto;
    box-shadow: 0 0 5px grey;
    height: auto;
}

#pageContent p,h2,li{
    margin : 0 1vw;
}

#pageContent h1{
    text-align: left;
    text-align-last: justify;
    font-family: junicode;
    text-transform: uppercase;
    margin-bottom: 1.5vw;
    color: var(--c1);
    color: rgb(120, 252, 149);
}

#pageContent h2{
    margin: .5vw 0 .5vw 0;
    font-family: junicode;
}

#pageContent h3{
    margin: 0 0 .5vw 0;
    color: rgb(120, 252, 149);
}

#pageContent p{
    margin-bottom: 1vw;
    line-height: 1.25em;
}

#pageContent ul{
    margin-bottom: 1vw;
    line-height: 1.25em;
}

#pageContent pre{
    margin-bottom: 1vw;
}

#pageContent a{
    color: var(--c1);
    
    text-decoration: 1px solid var(--c1) underline;
}

#pageContent a:hover{
    color : rgb(120, 252, 149);
}

.blockBot{
    display: block;
    width: 100%;
    height: 10vh;
}

#framalink{
    width: 100vw;
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 4;
    background-color: var(--c1);
}

#framalink a{
    animation : moveV 160s;
    width: 10vw;
    display: block;
    text-align: center;
    background-color:var(--c2) ;
    border-radius: 25px;
    font-weight: bold;
    color: white;
    margin: 0;
    padding: .5vh;
    transition: .1s;
    animation-iteration-count: infinite;
}

#framalink a:hover{
    background-color: var(--c3);
    color: var(--c1);
}

@keyframes moveV {
    from{
        margin-left: 0;
    }

    50%{
        margin-left: 89.5%;
    }

    to{
        margin-left: 0;
    }
}