*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    border: none;
    color: #000;
}

:root{
    /* Primary color palette */

    --modefer-yellow: #fbdc01;
    --black: #000000;
    --white: #ffffff;
    --modefer-fade: linear-gradient(135deg, var(--black), var(--modefer-yellow));
    --modefer-fade-mid: linear-gradient(135deg, var(--fade-mid-color), var(--modefer-yellow));

    /* Secondary color palette */

    --fade-mid-color: #7e6e01;

    /* Accent colors */
    
    

    /* Extra use colors */

    --whitesmoke: #F9F9F9;
    --light-gray: #ECECEC;
    --iron: #d1d7da;
    --gray: #C4C4C4;
    --medium-gray: #A7A7A7;
    --deep-gray: #343434;
}

body{
    background-color: var(--light-gray);
    font-size: 0.875rem;
}

nav.nav-buttons > a{
    text-decoration: none;
}

nav.nav-buttons > a > p{
    margin: 0;
}