:root {
    --mainwhite :#fbfbfb;
    --mainblack :#232323;
    --blugreen: #9df9ef;

    --border-main: rgb(205, 205, 205);

    --default-margin: 2rem;
}

/* || General */
* {
    padding:0px;
    margin:0px;
}

html {
    background-color:  var(--mainblack) ;
    color:var(--mainwhite);
    height: 100%;
    max-height: 100vh;
    overflow: hidden;
}

/* || Layout */

#mainLayout{
    display: grid;
    height: 100%;
    grid-template-rows: min-content 1fr auto;
    grid-template-columns: 120px 1fr;
    grid-template-areas: 
    "header header"
    "sidebar main"
    "foot foot"
    ;
}

header {
    grid-area: header;
}

aside {
    grid-area: sidebar;
}

main {
    grid-area: main;
    display: flex;
    flex-direction: column;
    height: 100%;
}

footer{
    grid-area: foot;
}

/* LayoutUtils */

.flex {
    display: flex;
}

.--flex-evenly{
    justify-content: space-evenly;
}

.grid {
    display: grid;
}
.grid-quad{
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
}

.float-right{
    float: right;
}

.--margin-top{
    margin-top: auto;
}

.margin-def{
    margin: var(--default-margin);
}

/* Components */

#header {
    border-bottom: solid var(--border-main) 1px;
    
    >div {
        display: flex;
        justify-content: space-evenly;

        > h2 {
            align-content: end;
    text-align: center;
        }
    }
    text-align: center;
}

#navbar {
    border-right: solid var(--border-main) 1px;

    >div{
        display: flex;
        height: 100%;
        flex-direction: column;
        >a{
            min-height: 80px;
            text-align: center;
            align-content: end;
            background-color: hsl(0, 0%, 30%);
            border-bottom:#fbfbfb solid 1px;
            color: var(--mainwhite);
        }:last-child{
            border-bottom: none;
            border-top: #fbfbfb 1px solid;
    }
    }
}



#footer {
    border-top: solid var(--border-main) 1px;
}





.bulletcard{
    background-color: #393838;
    min-width: 180px;
    border-radius: 6%;
    /* border-color:black solid 4px; */
    border:hsla(0, 100%, 13%, 0.778) solid 0.1ch;
    margin: 2rem;
    > h1 {
        padding:.4rem;
        text-decoration: underline;
        text-align: center;
    }
    >ul {
        padding-inline: 2rem;
        padding-block: 0.2rem;
        margin-bottom: 1rem;
        li {
            margin-top: 1rem;
        }
    }
}

#buttonBoard{
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    flex: 1 1 0;
    >a {
        display: grid;
        width: 100%;
        height: 100%;
        place-items: center;
        text-decoration: none;
        color:var(--mainwhite)

    }
}

/*  || Border */

.--border-l{
    border-left: solid 0.1rem var(--mainwhite)
}
.--border-r{
    border-right: solid 0.1rem var(--mainwhite)
}
.--border-t{
    border-top: solid 0.1rem var(--mainwhite)
}
.--border-b{
    border-bottom: solid 0.1rem var(--mainwhite)
}


.--outline{
    outline: #fbfbfb7f solid 0.1rem;
}