h1 {
	font-weight: normal;
	font-size: 150%;
	margin:1em 0 0;
	padding:0 0 0.5em 0;
}

h1:hover {
	color:rgb(0,181,107);
}

h2 {
	font-weight: normal;
	font-size: 120%;
	margin:0;
	padding:0;
}

p {
	font-size: 120%;
	margin:0.5em 0 0 1em;
	text-align: center;
}

#price {
	font-size:120%;
	color: rgb(0,181,107);
	margin-left:0;
	text-align: left;
}

a {
	text-decoration: none;
}

a, a:visited {
	color:black;
}

#content {
	flex-direction: column;
	width:100%;
}

.product {
	display:flex;
	border-bottom: 1px solid #c8c8c8;
	width:100%;
	margin-top:0.5em;
}

.product img {
	float:left;
	width:150px;
	height: 150px;
	object-fit:contain;
	margin-right:1em;
}

.product p {
	text-align: left;
	margin: 0;
}

/* Style The Dropdown Button */
.dropbtn {
  padding: 0.5em;
  font-size: 100%;
  border: 1px solid gray;
  border-radius:0.2em;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	margin-left:1em;
  width:150px;
}

.dropbtn {
	width:100%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  width:150px;
}

/* Links inside the dropdown */
.dropdown-content p {
  padding: 0.5em;
  display: block;
  margin:0;
  cursor:pointer;
  font-size:100%;
}

/* Change color of dropdown links on hover */
.dropdown-content p:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}