:root {
    --clr-ice-base: #0d1212;
    --clr-ice-deep: #0048ca;
    --clr-ice-bright: #43c0d4;
    --clr-ice-light: #9bdae4;
    --clr-star-base: #15121a;
    --clr-star-deep: #5827a9;
    --clr-star-bright: #a383d8;
    --clr-star-light: #c6aaf3;
    --clr-mint-base: #161916;
    --clr-mint-deep: #00c264;
    --clr-mint-bright: #3cce9b;
    --clr-mint-light: #8dd6bc;
    --clr-rose-base: #24191d;
    --clr-rose-deep: #e2003a;
    --clr-rose-bright: #ce3c6f;
    --clr-rose-light: #ff7799;
    --clr-steel-base: #222034;
    --clr-steel-deep: #595652;
    --clr-steel-bright: #d5d5d5;
    --clr-steel-light: #e5fffe;
}

@import url(https://cdn.jsdelivr.net/npm/firacode@6.2.0/distr/fira_code.css);

body {
    background-color: var(--clr-rose-base);
    color: var(--clr-steel-light);
    font-family: 'Fira Mono', monospace;
}

h1 {
    text-align: center;
}

hr {
    color: var(--clr-steel-deep);
}

a {
    color: var(--clr-mint-bright);

}

a:hover {
    color: var(--clr-mint-light);
}

code {
    font-family: 'Fira Code', monospace;
}

.navlist__link-container {
    list-style: none;
}

i .navbar__link {
    padding: 0 10px;
}

.navbar__link-container {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: center;
    gap: 1.1rem;
}

.navlist__link-container {
    margin-left: 20px;
}

.navlist__link {
    list-style: "> ";
}