body{
  background-color: #F2C4C4;
}
@font-face {
   font-family: 'Geometrica';
   src: url(fonts/Geometrica.ttf);
   font-style: normal;
   font-weight: 100;
}

h1{
  text-align: center;
  font-family: Geometrica;
  font-weight: 100;
}
h2{
  text-align: center;
  font-family: Geometrica;
}
*{
  box-sizing: border-box;
}
section{
  background: white;

  border:solid black;
  border-radius: 2em;
  border-width: 2px;

  margin-left: 50px;
  margin-right: 50px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.column {
  float: left;
  width: 50%;
  padding: 20px;
  height: 75%;
  text-align: center;
  font-family: monospace;
  font-size: 16px;
  font-weight: lighter;
  margin: center;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}
img {
  width: 100%;
  height: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: solid black;
  border-width: thin;
}

ul{
  text-align: left;
  width: 100%;
  height: 50%;
  list-style-position: inside;
  margin-top: -20px;
}
li{
  padding-bottom: 10px;
}
h3{
  text-align: center;
  font-family: monospace;
}
h4{
  text-align: left;
  font-family: monospace;
  margin-left: 10px;
  margin-right: 10px;
}
p{
  padding-left: 10px;
  padding-right: 10px;
  font-family: Geometrica;
  font-size: 16px;
}
.leftbutton{
  background-color: #C2DBED;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 15px;
}
.rightbutton{
  background-color: #C2DBED;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 15px;
}
.triangle-left {
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-right: 15px solid black;
	border-bottom: 15px solid transparent;
}
.triangle-right {
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-left: 15px solid black;
	border-bottom: 15px solid transparent;
}

.dropbtn {
  background-color: #73f18f;
  color: black;
  padding: 16px;
  font-size: 16px;
  font-family: Geometrica;
  font-weight: bold;
  font-size: 20px;
  border:solid black;
  border-radius: 2em;
  border-width: 2px;
}

.dropdown { /* w3schoolS.com */
  position: fixed;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f7c7;
  min-width: 160px;
  font-family: monospace;
  font-style: oblique;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #e0d6f8;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color:  #73edf1 ;}
