* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /* border: 1px solid red; */
}

:root {
    font-size: 16px;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Plus Jakarta Sans', Verdana, Geneva, Tahoma, sans-serif;
    background-color: #1f1f1f;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
}

p, span {
    font-weight: 200;
}

/* Navigation */

nav {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    width: 5rem;
    position: fixed;
    top: 0px;
    background-color: #2d2f31;
}

nav ul {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    height: 100%;
}

nav ul li .link-container {
    width: 5rem;
    text-align: center;
    padding: 1.1rem 5px;
    border-radius: 2rem;
}

nav ul li .link-container:hover {
    background-color: #28292a;
}

nav ul li .link-container .material-symbols-outlined {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

nav ul li .link-container span {
    font-size: 0.65rem;
    display: block;
    color: #baddf4;
}