body{
    padding: 0%;
    margin: 0%;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: black;
}

#navigation{
    position: absolute;
    border-bottom: 1px solid black;
    width: 100%;
    height: 10%;
}

#cName{
    position: inherit;
    width: 35%;
    height: 100%;
    text-align: center;
}

#cName>div{
    position: absolute;
    left: 20%;
    bottom: 0%;
    font-size: 1vh;
}

#cName>div>span:first-child{
    font-size: 6vh;
    color: rgb(255, 174, 0);
    text-shadow: 1px 1px black, -1px -1px black,
                 1px -1px black, -1px 1px black;
}

#cName>div>span:nth-child(2){
    font-size: 2vh;
}

#pagelink{
    position: inherit;
    left: 35%;
    width: 65%;
    height: 100%;
}

#pagelink>ul>li{
    padding-top: 15px;
    display: inline-block;
    width: 10%;
}

.arrow_move{
    display: inline-block;
    opacity: 0;
    transition: all .8s;
}

#pagelink>ul>li>a:hover{
    color: orange;
    font-weight: bold;
}

#pagelink>ul>li>a:hover .arrow_move{
    opacity: 1;
    transform: translateX(.4em);
}

.selPage{
    color: rgba(248, 111, 19, 0.897) !important;
}