body {
  margin: 0;
  padding: 0;
}
/* Header */
div.header {
  background: #000;
  font-family: "Courgette", cursive;
  font-weight: 400;
  font-size: 1.5em;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  position: relative;
}
/* Portfolio */
div.my_portfolio {
  width: 800px;
  height: 500px;
  margin: 20px auto 0 auto;
  background: url(images/gray_bg.png);
  border: solid 5px #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
}
div.my_portfolio div.description {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 20px;
  background: #000;
  opacity: 0.5;
  font-family: "Courgette", cursive;
  font-weight: 400;
  font-size: 0.8em;
  color: #fff;
  z-index: 11;
}
a.animate {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  vertical-align: top;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
a.animate span {
  display: block;
  text-align: center;
  padding-top: 15px;
  opacity: 0.5;
}
a.animate span strong {
  font-family: "Courgette", cursive;
  font-weight: 400;
  font-size: 0.9em;
  display: innline-block;
  margin: 0 auto;
  background: #000;
  color: #fff;
  padding: 2px 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
/* Animation view ul */
ul.animation_view {
  position: fixed;
  right: 1%;
  top: 18%;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: solid 3px #f9f9f9;
  outline: solid 1px #ccc;
}
ul.animation_view li {
  cursor: pointer;
  text-align: right;
  margin: 0;
  padding: 0;
}
ul.animation_view li span {
  display: block;
  width: 35px;
  height: 35px;
  background-color: #000;
  background-repeat: no-repeat;
  background-image: url(images/sprite.png);
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
ul.animation_view li span.random {
  background-position: -171px 3px;
}
ul.animation_view li span.rl {
  background-position: 1px 4px;
}
ul.animation_view li span.rmbl {
  background-position: -33px 3px;
}
ul.animation_view li span.rlmr {
  background-position: -131px 2px;
}
ul.animation_view li span.lrml {
  background-position: -100px 3px;
}
ul.animation_view li span.lmbr {
  background-position: -65px 5px;
}
ul.animation_view li span:hover,
ul.animation_view li.active span {
  opacity: 0.5;
}
/* Animation shape ul */
ul.animation_shape {
  position: fixed;
  right: 1%;
  top: 60%;
  list-style: none;
  margin: 0;
  padding: 0;
  border: solid 3px #f9f9f9;
  outline: solid 1px #ccc;
}
ul.animation_shape li {
  background: #000;
  padding: 2px;
  float: left;
}
ul.animation_shape li span {
  display: block;
  height: 15px;
  width: 15px;
  cursor: pointer;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
ul.animation_shape li span:hover {
  opacity: 0.6;
}
ul.animation_shape li span.box {
  background: #66cc00;
}
ul.animation_shape li span.circle {
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  background: #00ffff;
}
ul.animation_shape li span.h_circle {
  -moz-border-radius: 100px / 50px;
  -webkit-border-radius: 100px / 50px;
  border-radius: 100px / 50px;
  background: #ffff00;
}
ul.animation_shape li span.v_circle {
  -webkit-border-radius: 63px 63px 63px 63px/108px 108px 72px 72px;
  -moz-border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  background: #ff6600;
}
/* Start & stop ul */
ul.start_stop {
  position: fixed;
  right: 1%;
  top: 70%;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Courgette", cursive;
  font-weight: 400;
  font-size: 1;
  color: #fff;
  border: solid 3px #f9f9f9;
  outline: solid 1px #ccc;
}
ul.start_stop li {
  cursor: pointer;
  border-top: solid 1px #555;
  background-color: #000;
  padding: 2px 10px;
  text-align: center;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
ul.start_stop li.start.active {
  background: green;
}
ul.start_stop li.stop.active {
  background: red;
}
/* Support */
a.support {
  position: fixed;
  left: 10px;
  bottom: 10px;
}
a:hover {
  opacity: 0.9;
}
