@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i");

body {
    margin: 10px 20px 20px 20px;
    background: #F1F3F2;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
}

footer {
    background: #F1F3F2;
}

footer::after {
    content: '';
    display: table;
    clear: both;
}

.logo {
    float: left;
}

nav {
    float: right;
}

nav ul {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #F1F3F2;
    list-style: none;
}

nav li {
    display: inline-block;
    margin-left: 45px;
    padding-bottom: 23px;
    
    position: relative;
}

nav a {
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

nav a:hover {
    color: #000;
}

nav a::before {
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    background-color: #444;
    
    position: absolute;
    bottom: 20;
    width: 0%;
    
    transition: all ease-in-out 250ms;
}

nav a:hover::before {
    width: 100%;
}


.container {
    margin: 0 auto;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 95%;
}

table {
  border: 0px;
  border-collapse: collapse;
}
th, td {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
