:root {
    --bg-100: rgb(17, 17, 17, 0.9);
    --bg-200: #151515;
    --bg-300: #222222;
    --col-100: #ffffff;
    --col-200: #f5f5f5;
    --col-300: #cccbcb;
    --font: 'Consolas', monospace;
}

* {
    box-sizing: border-box;
    list-style: none;
    outline: none;
    padding: 0;
    margin: 0;
}

body,
html {
    display: flex;
    flex-direction: column;
    font-family: var(--font);
    background: linear-gradient(var(--bg-100)), url('images/background.png');
    background-position: center;
    background-size: cover;
    color: var(--col-100);
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--bg-200);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    gap: 1rem;
    width: 100%;
    z-index: 999;
}

nav
.title {
    user-select: none;
    font-weight: normal;
    font-size: 1.25rem;
    margin-left: 0.5rem;
}

nav
.nav-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-left: auto;
}

.nav-buttons
button {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    background: #202020;
    border: 2px solid var(--bg-300);
    font-size: 1rem;
    font-family: var(--font);
    color: var(--col-100);
    cursor: pointer;
    user-select: none;
}

.nav-buttons
button:hover {
    filter: brightness(1.2);
}

.container {
    display: flex;
    flex-direction: column;
    width: 70%;
    min-height: 100%;
    gap: 1rem;
    padding: 1rem;
    padding-top: 50px;
    align-self: center;
}

.container
section {
    display: block;
    padding: 0.5rem;
    line-height: 1.5;
}

.container
section .subtitle {
    font-size: 1.45rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--col-300);
}

.container
section p {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--col-100);
}

.container
.separator {
    display: flex;
    width: 100%;
    height: 2px;
    background: var(--col-300);
    margin: 0.5rem 0;
}

.container
.tool-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-list
a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    background: #1c1c1c;
    border: 2px solid var(--bg-300);
    outline: 1px solid transparent;
    transition: filter 0.2s ease, outline 0.2s ease;
}

.container
.tool-list:hover a {
    filter: blur(2px);
}

.container
.tool-list a:hover {
    filter: brightness(1.2), blur(0);
    outline-color: var(--col-300);
}

.container
.tool-list a:hover {
    filter: brightness(1.2);
}

.tool-list
a .tool-name {
    color: var(--col-300);
    font-size: 1.1rem;
}

.tool-list
a .tool-description {
    color: var(--col-100);
    font-size: 0.9rem;
    margin: 0;
}

footer {
    display: flex;
    padding: 0.5rem 1rem;
    width: 100%;
    justify-content: right;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--bg-300);
}

@media (max-width: 800px) {
    .container {
        width: 90%;
    }

    .container .project-list .project-name {
        font-size: 1rem;
    }

    .container .project-list .project-description {
        font-size: 0.8rem;
    }

    .container section p {
        font-size: 0.9rem
    }
}
