h1 {
	font-family: Arial;
	font-weight: lighter;
	font-size: 40px;
	margin-top: 10px
}
body {
	background-color: white;
}
button {
  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;
}
.item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 7px 7px 7px 7px
}
.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;
}
embed{
	height: 600px;
	width: 850px;
}
.wrapper {
	color: black;
	font-family: arial;
	font-size: 14px;
	line-height: 200%;
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 400px 400px;
  /* align-items: center; */
  justify-content: center;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5%;
}
.a {
    grid-column: 1;
    grid-row: 1;
}
.b {
    grid-column: 2 ;
    grid-row: 1;
}
img {
	width: 400px;
}
