body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family:verdana, sans-serif;
}

.nav {
  width: 100%;
  background: #606060;
  color: white;
  height: 40px;
  padding-top:10px;
  padding-bottom:-80px;
}

.nav span a {
  text-decoration:none;
  color:#FFF;
  font-size:20px;
  letter-spacing:1px;
  float:center;
  // height:10px;
  // margin:10px;
  // padding:10px;
}

.nav span a:hover {
  color:orange;
}

.container {
  position: relative;
  margin: 20px;
}

.sectionHeader {
  font-size:25px;
  font-family:verdana, sans-serif;
  letter-spacing:.5px;
  margin:20px;
}

.static .modal {
  border:2px solid #303030;
}

.bounce .modal {
  border:2px solid rgba(255, 0, 0, 0.5);
}

.fade .modal {
  border:2px solid rgba(0, 0, 0, 0.5);
}

.flip .modal {
  border:2px solid rgba(0, 255, 255, 0.5);
}

.lightspeed .modal {
  border:2px solid rgba(0, 0, 255, 0.5);
}

.rotate .modal {
  border:2px solid rgba(0, 0, 0, 0.8);
}

.slide .modal {
  border:2px solid rgba(144, 0, 0, 0.8);
}

.zoom .modal {
  border:2px solid rgba(0, 144, 255, 0.8);
}

.special .modal {
  border:2px solid rgba(0, 144, 144, 0.8);
}

.modal {
  position: relative;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 150px;
  width: 200px;
  background: violet;
  border-radius: 20px;
  display: inline-block;
  margin: 10px;
  box-shadow: inset 0 0 10px 3px rgba(0,0,0,0.3);
}

.modal span {
  position: absolute;
  margin: auto;
  font-size: 18px;
  color: black;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 25px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.modal div {
  position: absolute;
  margin: auto;
  font-size: 16px;
  color: #303030;
  left: 0;
  right: 0;
  bottom: 20%;
  height: 25px;
  width: 100%;
  text-align: center;
}

.modal:hover {
  transform:scale(.95);
}