h1 {
	font-family: Arial;
	font-weight: lighter;
	font-size: 40px;
	margin-top: 10px
}
h2 {
	font-family: Arial;
}
body {
	background-color: white;
}
#header {
  background-color: transparent;
  border: none;
	font: arial;
	color: black;
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	margin: 20px 20px 20px 20px;
}
button:hover {
  font-weight: bold;
}
.current {
  font-weight: bold;
}
a.home {
	color: black;
	text-decoration: none;
	display: flex;
}
a.home:hover {
	color: green;
}
.contact {
	width: 270px;
}
.header {
	display: flex;
	flex-direction: row;
	font-size: 20pt;
	justify-content: space-between;
	align-items: center;
	margin-right: 2%;
	margin-left: 2%;
}
a .fa {
	color: black;
	padding: 10px 10px 10px 10px;
}
a:link .fa {
	text-decoration: none;
}
a:hover .fa {
	text-decoration: none;
	color: green;
}
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    font-size: 14px;
    font-family: arial;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  font: Arial;
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.content {
  font: Arial;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}
