﻿:root {
    --primary-color: #eaeaea;
    --dark-text-color: #808080;
    --secondary-color: #1f1f1f;
    --background-color: #000000;
    --secondary-background-color: #181818;
    --accent-color: #36c066;

    --navbar-height: 65px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

main {
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background-color: var(--background-color);
}

nav {
    width: 100%;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    outline: none;
    border: none;
    border-radius: 28px;
    background-color: unset;

    cursor: pointer;
}

button:focus {
    outline: none;
}

a,
ul,
ol,
li {
    text-decoration: none;
    color: var(--dark-text-color);
    list-style: none;
}

img {
    max-width: 100%;
    max-height: 100%;
    border-radius: inherit;
}

footer {
    width: inherit;
    color: var(--primary-color);

    margin-top: auto;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;

    padding: 20px;
}

hr {
    border: none;
    height: 1px;
    background-color: var(--dark-text-color);
    margin: 20px auto;
}


/* width */
::-webkit-scrollbar {
    width: 10px;
    display: none;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}