body
{
    margin: 0px;
    background-color: turquoise;
    color: white;
    font-family: Bahnschrift;
}
#container
{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#topbar
{
    width: 100%;
    background-color: black;
    height: 50px;
}
.logo
{
    font-size: 40px;
    font-family: Chiller;
    margin-left: 10px;
    float: left;
}
.menu
{
    float: left;
    display: inline;
}
.menu li
{
    float: left;
    list-style-type: none;
    padding-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
    border-left: 1px solid;
}
.menu a
{
    color: white;
    text-decoration: none;
    text-align: center;
}
.menu li:hover
{
    cursor: pointer;
    background-color: gray;
}
#main
{
    float: left;
}
h1
{
    padding-left: 15px;
    text-decoration: underline;
}
table
{
    margin-left: 15px;
}
img
{
    height: 180px;
    width: 320px;
}
a:hover
{
    background-color: rgb(255, 255, 255, 0.3);
    cursor: pointer;
}
#footer
{
    margin-left: 0px;
    background-color: #000000;
    width: 100%;
    text-align: center;
    position: fixed;
    height: 33px;
    font-size: 20px;
    bottom: 0;
}