* {
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  margin: 0;
  border: 0;
  padding: 0;
  background-color: #404040;
}

main {
  margin: auto;
  width: 50%;
  padding: 20px;
}

title, h1, p, li {
  color: #FFFFFF;
}

p {
   padding-left: 20px
}

.noindent {
  padding-left: 0px
}

main > h1 {
  text-align: center;
  font-size: 3.5em;
}

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

li {
  float: left;
  border-right:1px solid #bbb;
}

li:last-child {
  border-right: none;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
}

.active {
  background-color: #04AA6D;
}

/* Bullet list override to default */
.bullet-list {
  list-style-type: disc;
  overflow: visible;
  background-color: #404040;
  margin-left: 60px;
  padding-bottom: 30px
}

.bullet {
  float: none;
  border-right: none;
}

table, th, td {
  border:1px solid #FFFFFF;
  color: #FFFFFF;
}

a:hover {
  background-color: black;
  font-size: 18px;
}
/* Bullet list override to default */

/* Hover effects for images> */
.container {
  position: relative;
  width:384px;
  height:216px;
}

.image {
  opacity: 1;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
  position: relative;
  width:384px;
  height:216px;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container:hover .image {
  opacity: 0.3;
}

.container:hover .middle {
  opacity: 1;
}

.text {
  background-color: orange;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}

.imglink:hover {
  background-color: transparent;
  opacity: 0.3;
}
/* Hover effects for images> */