/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 14, 2020, 10:42:00 PM
    Author     : phil
*/

html {
    --color-lgreen: #E7F7D4;
    --color-dgreen: #7FBD32;
    --color-red: #FD4D0C;
    --color-blue: #1258DC;
    --color-black: #091834;
    --color-white: #FFFFFF;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: var(--color-lgreen);
}

li {
    display: inline;
    float: left;
}

li:last-child {
    border-right: none;
}

li a {
    display: block;
    color: var(--color-black);
    text-align: center;
    padding-left: 12px;
    padding-right: 12px;
    text-decoration: none;
}

/* Change the link color on hover */
li a:hover {
    background-color: var(--color-black);
    color: white;
}

#header, #menu, #content, #footer {
    width: 800px;
    padding: 20px;
    margin: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

#header {
    height: 150px;
}

#menu {
    height: 20px;
}

#header, #menu {
    background-color: var(--color-dgreen);
    color: black;
    text-align: center;
    border-radius: 20px;
}

#content {
    background-color: var(--color-lgreen);
    color: black;
    border-radius: 20px;
}

#footer {
    background-color: var(--color-black);
    color: white;
    border-radius: 20px;
}
