@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

.m-dark {
    transition: .3s;
    background: #1b1b1b;
    color: white;
}

.m-light {
    transition: .3s;
}

:root {
    --hover-color: #c5c5c5;
    --main-color: #2A5AA3;
    --secondary-color: #782AD1;
}

::-webkit-scrollbar {
    background: #ececec;
    width: .5rem;
}

::-webkit-scrollbar-thumb {
    background: rgba(42, 90, 163, 1);
    height: 10px;
}

* {
    box-sizing: border-box;
}


body {
    margin: 0;
    font-family: "Roboto";
}

main {
    margin-top: 0px;
}

nav {
    margin-bottom: 60px;
    overflow-x: hidden;
}

.nav__ul {
    position: fixed;
    top: 0;
    width: 100%;
    list-style: none;
    overflow: hidden;
    background: #f0f0f0;
    margin: 0;
    padding: 0;
    user-select: none;
}

.m-dark .nav__ul {
    background: #2e2e2e;
}

.m-dark .nav__a {
    color: #ffffff;
}

.nav__a {
    float: left;
    cursor: pointer;
    user-select: none;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 10px;
    color: initial;
}

.nav__a:hover {
    transition: ease 200ms;
    color: #ffffff;
    background: var(--hover-color);
}

.nav__a.current {
    color: #ffffff;
    background: var(--main-color);
}

.center {
    text-align: -webkit-center;
    margin: auto;
}

.line__short {
    line-height: 15px;
}

.logo__display {
    width: 22rem;
}

.right {
    float: right;
}