@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

:root{
    --color1: rgb(255, 238, 223);
    --color2: black;
}
html{
    height: 100%;
}

.topBar{
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

body{
    background-color: var(--color1);
    height: calc(100% - 60px);
    margin: 30px;

    margin-right: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

header{
    height: auto;
    background-color: var(--color1);
    position: sticky;
    width: calc(100% + 2px);
    padding-right: 2px;

    z-index: 10;
}

main{
    display: none;
    position: sticky;
    overflow-y: scroll;
    overflow-x: hidden;
    border-left: 1px dashed var(--color2);
    border-right: 1px dashed var(--color2);
    width: 100%;
    height: -webkit-fill-available;
    padding-bottom: 15px;
}

footer{
    border: 1px dashed var(--color2);
    margin-bottom: -1px;
    background-color: var(--color1);
    position: sticky;
    width: 100%;
    height: 60px;

    bottom: 30px;

    z-index: 10;

    display: grid;
    grid-template-columns: 1fr 1fr;  
}

footer nav{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-around;
    height: 60px;
}

footer nav > *{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

    border-right: 1px dashed var(--color2);
}

footer nav a:hover {
    background-color: var(--color2);
}

.footerRight{
    padding: 15px;
    font-size: 12px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.listContainer{
    padding: 8px;
    border: 1px dashed black;
    display: flex;
    flex-wrap: wrap;
}

.boutonList{
    border: 1px solid var(--color2);
    border-radius: 50px;
    height: 22px;
    width: 22px;
    text-decoration: none;
    color: var(--color2);
    font-size: 12px;
    font-weight: 300;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.boutonList:hover{
    background-color: var(--color2);
    color: var(--color1);
}

.active{
    background-color: var(--color2);
    color: var(--color1);
}




.activeIcon{
    background-color: var(--color2);
}

.activeIcon path{
    fill: var(--color1);
}

footer nav a:hover path{
    fill: var(--color1);
}



.about:hover{
    background-color: var(--color2);
    color: var(--color1);
}

::-webkit-scrollbar {
    height: 12px;
    width: 12px;
    background: var(--color1);
    color: var(--color2);
}

::-webkit-scrollbar-thumb {
    background: var(--color2);
    -webkit-border-radius: 0;
    width: 5px;
    
}





