/* tvb.css */
body {
 margin: 0;
 }
* {
  box-sizing: border-box;
}
h1{
text-shadow: 2px 2px 1px grey;
}
img {
    display: block;
    margin: auto;
    width: 50%;
} 
header, footer {
   padding: 1em;
	  color: white;
		 background-color: black;
		   clear: right;
			 text-align: center;
}

header h2 {    
    font-size: 4em;
    position: relative;
    top: 30px;
    left: 550px;
    display: inline;
}
header p {
    font-size: 1.3em;
    font-weight: bold;
    position: relative;
    top: 50px;
    left: 60px;
    display: inline
}    
menu {
    position: relative;
    top: 100px;
    left: 340px;
    display: inline-block;
}
menu li{
    font-weight: bold;
    display: inline;
    text-transform: uppercase;
    margin-right: 14px;
}
menu input {
    font-size: 0.7em;
    text-transform: lowercase;
    text-align: right;
    position: relative;
    top: -4px;
}
div.container {
  width: 100%;
	 border: 1px solid gray;
         border: 5px black;
         padding: 20px;
         position: relative;
}
div.centerleft {
  width: 25%;
	  border: 1px solid gray;
}

div.bottomleft {
    position: absolute;
    bottom: 8px;
    left: 16px;
    font-size: 25px;
}
/* Add a black background color to the top navigation */
div.topnav {
background-color: #333;
overflow: hidden;
}

/* Style the links inside the navigation bar */
div.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 25px;
}

/* Change the color of links on hover */
div.topnav a:hover {
background-color: #ddd;
color: black;
}

/* Add a color to the active/current link */
div.topnav a.active {
background-color: #4CAF50;
color: white;
}
			



