*{ margin:0;padding:0}

body {

	margin: 0;
}

#Shopping {
	width: 219px; 
	height: 37px; 
	float: right; 
	margin-top: 1em;
}

#Shopping img {
	height: 31px; 
	width: 43px;
}

#Shopping img:hover {
		background-color: red;
}

table, th, td {
   border: 1px solid black;
   margin: auto;
   color: black;
}

p {

	margin-bottom: 10px;
	color: black;
}

h2 {
	font-family: ARIAL,HELVETICA;
	font-size: 20px;
	font: white;
}



h1 {
	color: Black;
	margin-left: 10px;
	height: 44px;
	font-style: ARIAL,HELVETICA;
	
}

h3 {
	color: black;
}

h4 {
	color: black;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 18px;
}

.table #table {
    align: center;
	color: white;
}
.header {
	background-color: grey;
}

.header h1, h2 {
	color: white;
	font-family: Algerian;
}

.column.left {
    float: left;
    width: 25%;
}

/* Left and right column */
.column.right {
	float: right;
    width: 25%;
}

/* Middle column */
.column.middle {
    width: 50%;
}

.content {
	width: 50%;
	float: center;

	margin: auto;
	padding: 10px;
	text-align: center;
	background-color: white;
	vertical-align: top;
}


/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #3e3e3e;
  font-family: Arial;
  float: center;
  width: 100%;
  
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
	

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
  cursor: pointer;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px; 
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
  text-decoration: underline;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible; /* Show the snackbar */

/* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}