:root{
    font-size:20px;
    font-family: 'Trebuchet MS';
    --primary-background: #252525;
    --primary-color: #FF0000;
    --secondary-color: #AF0404;
    --tertiary-color: #414141;
    color:white;
}
body, html{
    margin: 0
}

html{
    scroll-behavior: smooth;
}
.header {
    padding: 60px;
    text-align: center;
    background: #444444;
    color: white;
    font-size: 30px;
}
.headerText{
    color:white;
     justify-content: center
}
body{
    color: var(--teritary-color);
    background-color: var(--primary-background);
    margin: 0;
    padding: 0;
    height: 100%
}
body::-webkit-scrollbar {
    width: 0.25rem;
}
body::-webkit-scrollbar-track{
    background-color: var(--primary-background)
}
body::-webkit-scrollbar-thumb{
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}
main {
    margin-left: 6rem;
    padding:1rem;
}
/*
.defaultText{
    color: var(--tertiary-color)
}
.holderBox{
    display: flex;
    flex-direction: wrap;
    justify-content: center;
}
.boxItem{
    background-color: #212121
}
*/
.navbar{
    float: left;
    width: 5rem;
    height: 100vh;
    position: fixed;
    background-color: var(--primary-color);
    transition: width 200ms ease;
}
.navbar-nav{
    height:100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction:column;
    /* align_items: center; */
}
 .nav-item:last-child{
    margin-top:auto;
}

.nav-link{
    display: flex;
    /* alight-items: center; */
    height: 5rem;
    color: white;
    filter:grayscale(100%) opacity(0.6);
    transition:200ms;
}

.nav-link:hover{
    filter:grayscale(0%) opacity(1);
    background-color: var(--secondary-color);
}
.link-text{
    display: none;
    margin-left: 1rem;
    font-size: 1.5rem;
}
.icon {
    min-width: 2rem;
    margin: 0 1.5rem;
}
.navbar:hover{
    width: 16rem;
}
.navbar:hover .link-text{
    display: block;
}
.section{
    min-height: 100vh;
    display: flex;
}

.holder{
    align-self: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.class-holder{
    max-width:30rem;
    background-color:var(--secondary-color);
}
#journal{
    flex-direction: column;
}
#home-holder{
    max-width: 50rem;
    margin:auto;
}
#classes-holder{
    max-width: 60rem;
    margin:auto;
    flex-direction:row;
    flex-wrap:wrap;
}
#dp-holder{
    max-width: 60rem;
    margin:auto;
}
#journal-entry{
    max-width: 60rem;
    min-height: 100vh;
    margin:auto;
    text-align: center;
}
#isp-holder{
    max-width: 60rem;
    margin:auto;
}
#sources-holder{
    max-width: 60rem;
    margin:auto;
}
#git {
    position: fixed;
    right: 0px; bottom: 0px;
    width: 200px;
    height:40px;
    background-color:lightblue;
    padding: 5px;
}
