@import url('https://fonts.googleapis.com/css?family=Permanent+Marker|Roboto&display=swap');

*
{
    margin: 0;
    padding: 0;
    
}

body
{
/* background-color: black ; */
    
}

* ::-webkit-scrollbar
{
    width: 3px;    
}

* ::-webkit-scrollbar:hover
{
    display: block;
}

::-webkit-scrollbar-thumb
{
    background-image: linear-gradient(rgba(250, 248, 248, 0.8),rgba(253, 252, 252, 0.9));
}

* ::-webkit-scrollbar-track
{
    background-color: black;
    border-radius: 10px;
}  

header
{
    width: 100vw;
    margin: 0 auto !important;
    height: 6vh;
    position: fixed;
    text-align: center;
    font-family: 'roboto', sans-serif;
    font-weight: 500;
    z-index: 999;
} 

header ul
{
    display: inline-block;
    width: 80vw;
    padding: 0 0 14px 0;
    vertical-align: top;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

header ul li
{
    display: inline-block;
    width: auto;
    vertical-align: top;
    /* background-color: green; */
    margin: 8px 30px 0 30px ;
}

header ul li a
{
    text-decoration: none;
    color: #ccc;
    margin: 10px 0 0 0;
    font-size: 16px;
    display: block;
    z-index: 999;
}

header ul li a:visited
{
    font-size: 16.5px;
    border-bottom: 2px solid red !important;
    color: back;
}

header ul li hr
{
    width: 0px;
    visibility: hidden;
    border-color: red;
    transition: 0.5s ease-in-out;
}

header ul li a:hover + hr 
{
    width: 100%;
    visibility: visible;
    transition: 0.5s ease-in-out;
}


footer
{
    text-align: center;
    background-color: black;
    color: white;
    padding: 20px 0 10px 0;
    font-family: 'roboto';
}

footer p
{
    font-size: 18px;
}
