﻿body { 
    background-image: url('Background.jpg'); 
    background-repeat: repeat; 
    background-position: top left; 
    background-attachment: scroll; 
    font-family:"Roboto Condensed",arial,helvetica,"Liberation Sans",sans-serif;
}

.Container {
    width: 70%;
    margin: auto;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3), 0px 0px 50px rgba(0, 0, 0, 0.1) inset; 
    margin-top: 25px;
    background-color: aqua;
}

.Navigation {
    background-color: #3c9bed;
    height: 156px;
}

.Navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.Navigation ul li {
    float: left;
}

.Navigation ul li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.Navigation ul li a:hover:not(.active) {
    background-color: steelblue;
    color:white;
}

.Navigation ul li a.active {
    color: white;
    background-color: royalblue;
}

.Content {
    background-color: aqua;
    padding: 10px;
}
