@charset "UTF-8";
/* CSS Document */
    /* Add some padding on document's body to prevent the content
    to go underneath the header and footer */
    body{
		margin-top: 0;
		margin-left: 0;
        padding-top: 280px;
        padding-bottom: 140px;
		font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
		font-size: 30px;
    }
    .container{
        width: 100%;
        margin: 0 auto; /* Center the DIV horizontally */
    }
    .fixed-header, .fixed-footer{
        width: 100%;
        position: fixed;        
        background: #333;
        padding: 0px 0;
        color: #fff;
    }
    .fixed-header{
        top: 0;
    }
    .fixed-footer{
        bottom: 0;
    }    
    /* Some more styles to beutify this example */
    nav a{
        color: #fff;
        text-decoration: none;
        padding: 7px 25px;
        display: inline-block;
    }
    .container p{
        line-height: 1000px; /* Create scrollbar to test positioning */
    }
	.dropbtn {
  background-color: #000000;
  color: white;
  height: 220px;
  width: 150px;		
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #000000;
  min-width: 410px;
  box-shadow: 5px 5px 10px 0px grey;
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 50px;
  display: block;
}

.dropdown-content a:hover {
	background-color: #000000;
	color: #b5985a;
}
.dropdown:hover 
.dropdown-content {
	display: block;
}
.dropdown:hover 
.dropbtn {
	background-color: #000000;
}
