/* General CSS for the Website */
/* GENERAL STUFF */
/* colors: http://www.colorcombos.com/color-schemes/124/ColorCombo124.html */

body {
  font-family: Gill Sans,Gill Sans MT,Calibri,sans-serif;
  background-color: #ebf1f4;
  padding: 0px;
  margin: auto;
  text-align: center;
}

p {
  font-size: 120%;
  line-height: 130%;
}

.description {
  width: 80%;
  margin:0 auto;
  max-width: 1000px;
}


/* for the header mostly and footer a bit */
.headerul {
  font-size: 120%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  text-align: left;
  z-index: 1;
}

.footerul {
  text-align: left;
  padding: 10px;
  width: calc(100vw-20px);
  bottom: 0;
  display: flex;
  justify-content: space-between;
}


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #565656;
}

li {
  color: #ebf1f4;
}

li a, .category {
  display: inline-block;
  color: #ebf1f4;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #686767 on hover */
li a:hover, .dropdown:hover .category {
  background-color: #686767;
}

li.dropdown {
  display: inline-block;
}

/* dropdown content */
.dc {
  display: none;
  background-color: #565656;
  min-width: 160px;
  position: absolute;
  z-index: 1;
}

.dc a {
  color: #ebf1f4;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dc a:hover {
  background-color: #686767;
}

.dropdown:hover .dc {
  display: block;
}
