@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

* {
  font-family: 'Montserrat', sans-serif;
}

body {
  overflow-y: scroll;
  color: #000;
  background: #fff /* url(background.png) no-repeat; */
  background-attachment: fixed;
  background-position: center center;
}

a, a:link, a:visited, a:active {
  color: #000;
  text-decoration: none;
  box-shadow: 0 2px 0 -1px #000;
}

.logo {
  position: fixed;
  line-height: 200%;
  text-align: right;
  bottom: 50px;
  right: 50px;
}

.robot {
  display: inline-block;
  width: 70px;
}

.robot img {
  width: 70px;
  animation: robot 750ms infinite ease-in-out;
}

.robot div {
  width: 70px;
  height: 20px;
  margin: 0 0 25px 0;
  background-image: radial-gradient(rgba(0,0,0,0.25) 0%, transparent 75%);
  animation: shadow 750ms infinite ease-in-out;
}

@keyframes robot {
  0% {transform: translateY(0)}
  50% {transform: translateY(10px) scale(1.05, 0.95)}
  100% {transform: translateY(0)}
}

@keyframes shadow {
  0% {transform: scale(0.35);}
  50% {transform: scale(0.65);}
  100% {transform: scale(0.35);}
}

.logo img {
  text-align: right;
}

#wrapper {
  width: 50%;
  margin: 50px;
  padding: 0;
  overflow: hidden;
}

#wrapper {
  list-style: none;
}

.project:link, .project:active, .project:visited {
  font-size: 25px;
  color: #000;
  padding: 20px;
  margin: 0 0 20px 0;
  display: inline-block;
  background-image: linear-gradient(to top, transparent, transparent 50%, #000 50%, #000);
  background-position: 0 100%;
  background-size: 100% 200%;
  transition: all 350ms cubic-bezier(0.68, -0.55, 0.265, 1.55);     
}

.project:hover {
  box-shadow: none;
  background-position: 0 0;
  color: #fff;
}

.content {
  display: none;
  margin: 0;
  font-size: 15px;
  line-height: 150%;
  padding: 0 20px 0 20px;

}

.deliverables {
  padding: 20px;
  list-style: square;
}

.wireframes:link, .wireframes:active, .wireframes:active  {
  border: 1px solid #000;
  box-shadow: none;  
  margin: 20px 20px 20px 0;
  display: inline-block;
  font-weight: 700;
  padding: 8px 30px 8px 30px;
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 50%, 50% 0);
  background-image: linear-gradient(to top, transparent, transparent 50%, #000 50%, #000);
  background-position: 0 100%;
  background-size: 100% 200%;
  transition: all 350ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wireframes:hover {
  border: 1px solid transparent;
  clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 100%, 0% 100%);
  background-position: 0 0;
  color: #fff;
}

.wireframes span {
  font-weight: 400;
  margin: 0 0 0 10px;
}