/*
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.
*/
/* 
    Modified: Nov 7 2020, 11:19 AM
*/

html {
    --color-lgreen: #E7F7D4;
    --color-dgreen: #7FBD32;
    --color-red: #FD4D0C;
    --color-blue: #1258DC;
    --color-black: #091834;
    --color-white: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
}

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

#menu li {
    display: inline;
    float: left;
}

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

#menu 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 */
#menu li a:hover {
    background-color: var(--color-black);
    color: white;
}

#header, #menu, #content, #footer {
    width: 800px;
    padding: 20px;
    margin: 5px;
}

#header {
    height: 80px;
}

#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;
}

.button {
    display: inline-block;
    padding: 2px 12px;
    margin: 2px 32px;
    cursor: pointer;
}

/* Create two columns that float next to each other */
.pic {
    float: left;
    width: 50%;
}

.desc {
    float: left;
    width: 50%;
}

.fset {
    float: left;
    width: 50%;
}

/* Clear floats after the columns */
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

