﻿@charset "utf-8";

/* CSS Document */
* {
    margin: 0;
    padding: 0;
}



img {
    text-indent: inherit;
    display: block;
}

ul,
li,
ol,
dl,
dd {
    list-style: none;
}

body {
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 4px;
}

body:hover::-webkit-scrollbar-thumb {
    background: hsla(0, 0%, 53%, 0.4);
}

body:hover::-webkit-scrollbar-track {
    background: hsla(0, 0%, 53%, 0.1);
}

nav {
    display: flex;
    height: 100%;
    position: fixed;
    right: 80px;
    color: #ccc;
    font-size: 20px;
    text-align: right;
    flex-direction: column;
    justify-content: center;
}

nav ul {
    position: relative;
    bottom: 0;
    margin: auto;
}

nav ul li {
    list-style: none;
    height: 50px;
    line-height: 50px;
}

nav ul li a {
    color: #ccc;
}

nav ul li .radiu {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 50%;
    border: 5px solid #ddd;
    vertical-align: middle;
}

.active a {
    color: #fff !important;
}

.active .radiu {
    border-color: #fff !important;
    background: #fff !important;
}

a {
    text-decoration: none;
}