*
{
    margin: 0;
    padding: 0;
}

header
{
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: #003359;
}

header a img
{
    height: 85px;
} 

ul
{
    background-color: #003359;
    position: fixed;
    top: 0;
    width: 100%;
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

li
{
    float: left;
}

li a
{
    display: block;
    color: #fff;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: Helvetica;
    padding: 15px 30px;
    font-size: 50px;
}

li a:hover
{
    background-color: #0091ff;
}

.active
{
	background-color: #0091ff;
}

main
{
    margin: 10px;
    font-family: Helvetica;
}

.container
{
    display: flex;
    align-items: flex-start;
    justify-content: left;
}

.text
{
    margin-left: 10px;
}

button
{
    color: #fff;
    background-color: #c75b12;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
}

footer
{
    position: fixed;
    bottom: 0;
    right: 1%;
    display: flex;
}