/*Created by David Germain 18/12/2024*/
/*The file website.css is the general css of the website*/
:root{
    --DarkerGreen: #364c28;
    --DarkGreen: #4c6438;
    --Green: #a5b383;
    --LightGreen: #c6d3a4;
    --LighterGreen: #d5dcb5;
    --LighterLighterGreen: #e7ecd1;
    --LightText: #e9efc0;
    --Edward: #AAB5AF;
    --MineralGreen: #365544;
    --Pewter: #9BA7A1;
    --GreenSpring: #BCC0BA;
    --GrayNurse: #E8EAE6;
    --GreenWhite: #E4E9DD;
    --Corduroy: #637069;
    --OverLock: "Overlock", serif;
}
body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--LightGreen);
    overflow-x: hidden;
    height: 100%;
}
/*-------------------------------Header Section-------------------------------*/
.header{
    background-color: var(--DarkGreen);
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 7px;
}
.headerIcon, .formIcon{
    font-size: 30px;
    color: var(--LightText);
    padding: 10px;
    border-radius: 25%;
}
.headerIcon:hover{
    background-color: var(--DarkerGreen);
}
.headerTitle{
    color: var(--LightText);
    font-weight: 800;
    font-size: 1.7em;
    margin-left: 5px;
}
.headerLogo{
    height: 100%;
    width: auto;
    border-radius: 50%;
    margin-left: 10px;
}
/*-------------------------------Content Section-------------------------------*/
.content{
    margin: 10px;
    background-color: var(--LightGreen);
}
/*-------------------------------Sidebar Section-------------------------------*/
