@import url('https://fonts.googleapis.com/css?family=Noto%20Sans%20Mono:700|Noto%20Sans%20Mono:400');

html {
    background-color: rgb(4, 4, 10);
}
body {
    margin: 0%;
}

nav {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 1;
}
nav a {
    float: right;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 17px;
    transition: 0.4s;
}
nav a:hover {
    color: rgba(60, 139, 245, 1);
}
nav a.active {
    text-decoration: dashed underline;
}
nav .icon {
    display: none;
}


*::-webkit-scrollbar {
    width: 12px;
}
*::-webkit-scrollbar-track {
    background: rgb(3, 11, 10);
}
*::-webkit-scrollbar-thumb {
    background: rgb(28, 31, 30);
    border-radius: 15px;
}
*::-webkit-scrollbar-thumb:hover {
    background: rgb(8, 99, 153);
}

@media screen and (max-width: 600px) {
    nav a:not(:first-child) {
        display: none;
    }
    nav a.icon {
        float: right;
        display: block;
    }
}
@media screen and (max-width: 600px) {
    nav.responsive {
        position: relative;
    }
    nav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    nav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

p, h1, h2, h3, h4, h5, h6, a, button, img {
    font-family: 'Noto Sans Mono';
    color: rgb(230, 230, 230);
}
a {
    color:  rgb(8, 99, 153);
}
a:hover {
    transition: 0.4s;
    color: rgb(60, 139, 245);
}