@import url('https://fonts.googleapis.com/css?family=Lobster');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

body{
	margin: 0px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header{
	background: black;
	color: white;
	padding: 5px;
	height: 50px;
}

nav > h1{ 
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-weight: 400;
	font-size: 28px;
    align-items: center;
    justify-content: center;
	float: left;
	margin-top: 0px;
	padding: 5px;
}

nav {
    display: inline;
}

nav ul {
	display: inline;
	padding: 0px;
	float: right;
}

nav > ul li{
    display: inline;
	list-style-type: none;
	color: white;
	margin-left: 12px;
}

nav ul ul {
    background: black;
    position: absolute;
    top: 42px;
    margin-left: -70px;
    opacity: 0;
    visibility: hidden;
}

nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}

nav ul ul li {
    position: relative;
    margin: 0px;
    padding: 5px;
    width: 150px;
    float: none;
    display: list-item;
}

li > a{
	color: white;
	text-decoration: none;	
}

#navli{
	font-family: 'Montserrat', sans-serif;
}

.homered{
	background-color: red;
    padding: 1px;
}

.divider{
	background-color: blue;
	height: 5px;
}

.homeblack {
    padding: 1px;
}

.homeblack:hover{
	background-color: blue;
}

table {
    margin: 0px;
      border-collapse: collapse;
      width: 100%;
      font-family: 'Montserrat', sans-serif;
    }
    
    th, td {
      text-align: center;
      padding: 8px;
    }
    
    tr:nth-child(even){background-color: #f2f2f2}
    tr:hover {background-color:#76D7C4;}
    
    th {
      background-color: #4CAF50;
      color: white;
    }
    
    .p-t-20 {
      padding-top: 20px;
    }
    
    .btn {
      line-height: 40px;
      display: inline-block;
      padding: 0 25px;
      cursor: pointer;
      font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;
      color: #fff;
      -webkit-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      transition: all 0.4s ease;
      font-size: 14px;
      font-weight: 700;
    }
    
    .btn--radius {
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
    }
    
    .btn--green {
      background: #57b846;
    }