ul {
    font-family:"nimbus-sans";
	letter-spacing: .5px;
	text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}


ul li {
        margin: 0px;
}



body {
	background-image: url(images/bg-reduced.jpg);
	background-position: center top;
    background-size: 100% auto;
	
}

.center-div
{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 75%;
}

.social
{
  float: right;
  width: 100%;
}


 .brewname
{
	letter-spacing: .5px;
	font-family:"nimbus-sans";
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
	text-align:center;

}

 .brewtown
{
	letter-spacing: .5px;
	font-family:"nimbus-sans";
    text-decoration: none;
    transition: 0.3s;
    font-size: 12px;
	text-align:center;
	color: #BBBDC0;

}
  
  
  .brewinfo
{
	font-family:"nimbus-sans";
	letter-spacing: .5px;
	text-decoration: none;
    transition: 0.3s;
    font-size: 12px;
	text-align:center;
}



.detail-div
{
	width: 86%;
	background-color: #FFF;
	padding-left: 5%;
	padding-right: 5%;
	opacity: 0.95;
    margin-left: 2%;
}
  
  .question
{
	letter-spacing: 2px;
	font-family:"cubano";
    text-decoration: none;
    transition: 0.3s;
    font-size: 21px;
}
  
  
  .answer
{
	font-family:"nimbus-sans";
	letter-spacing: .5px;
	text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}
  
    
.top-badge
{
  margin-left: 150px;
  margin-top: 50px;
  width: 40%;
}
  
 /* Remove margins and padding from the list, and add a black background color */
ul.topnav {
    list-style-type: none;
    margin-left: 1%;
    padding: 0;
    overflow: hidden;
	width: 100%;
	margin-top: 0%;
	

}

ul {
	border-bottom: 0px solid #FBCB33;
}

li a {
    color: #FFF;

}

/* Float the list items side by side */
ul.topnav li {float: left;}

/* Style the links inside the list items */
ul.topnav li a {
    display: inline-block;
    color: #FFF;
	letter-spacing: 2px;
	font-family:"nimbus-sans";
	text-shadow: 2px 2px 4px #000000;
    text-align: center;
    padding: 10px 14px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of links on hover */
ul.topnav li a:hover {background-color: #111;}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon {display: none;}


 /* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:680px) {
  ul.topnav li:not(:first-child) {display: none;}
  ul.topnav li.icon {
    float: right;
    display: inline-block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
@media screen and (max-width:680px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
  
  /* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
function myFunction() {
    document.getElementsByClassName("topnav")[0].classList.toggle("responsive");
}

 