/*
Joel Mardock
09-18-2022
Module 7.2 Assignment Build a Webpage Exercise, Part 5
*/


header
{
    background-color: #6497b1;
    color: white;
    padding: 20px;
    text-align: center;
}

footer
{
    background-color:#6497b1;
    font-weight: 400;
    font-style: italic;
    padding-right: 10px;
    float: right;
    position: absolute;
    bottom: 0;
    width: 100%;
    
}
footer p
{
    color: white;
    font-weight: 400;
    float: right;
    padding: 10px;
    font-style: italic;
}
footer a
{
    text-decoration: none;
    color: white;
}
footer :hover
{
    text-decoration: underline;
}

h1
{
    font-weight: 400;
}

#navbar
{
    overflow: hidden;
    background-color: #005b96;
    border-bottom: 15px solid #011f4b;
}
#navbar a
{
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
#navbar a:hover
{
    background-color: #011f4b;
}

#container
{
    margin-top: 2%;
    margin-left: 5%;
    margin-right: 5%;
    padding: 10px;
}
.card
{
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 50%;
}
.card-title
{
    text-align: center;
    font-size: 2em;
    color:#03396c;
    font-weight: 400;

}
.card-content
{
    padding: 2px 16px;
}
.card:hover
{
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}