@font-face {
    font-family: OrbitronM;
    src: url(Fonts/orbitron-medium.otf);
}

@font-face {
    font-family: OrbitronB;
    src: url(Fonts/orbitron-bold.otf);
}

@font-face {
    font-family: OrbitronD;
    src: url(Fonts/orbitron-black.otf);
}

body {

    background-color: black;
    color: white;
    font-family: OrbitronM;

}

.link {

    text-decoration: none;
    color: rgb(179, 97, 255);

}

.link:hover {

    text-decoration: none;
    color: aqua;

}

.sidenavi {

    height: 100%;
    width: 180px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding-top: 20px;
    border-style: ridge;
    border-color: lime;

}

.sidenavi a {

    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 25px;
    color: aqua;
    display: block;

}

.sidenavi a:hover {

    color: red;

}

.sidenavi a.active-page{

 color: lime;

}

.main {

    margin-left: 180px;
    padding: 0px 10px;
    text-align: center;
    color: lime;

}

.title-1 {
    
    border-color: black;
    border-bottom-color: cyan;
    border-style: double;
    padding-bottom: 5px;
    font-size: 28px;
    color: red;

}

.normal-1 {

    padding-top: 2px;
    color: lime;
    font-size: 20px;

}

.small-1 {

    color: lime;
    font-size: 14px;
    font-family: OrbitronM;

}



@media screen and (max-height: 450px){

    .sidenavi {padding-top: 15px;}
    .sidenav a {font-size: 18px;}

}