body{
  font-size: 16px;
  font-family: Verdana, sans-serif;
  color: #333;
  margin:0;
}

.container{
  width: 780px;
  margin: 0 auto;
  padding: 30px 0;
}

.bg {
  color:#fff;
  background: skyblue;
  background-size: cover;
}

.section-title {
  text-align: center;
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 0;
}

.section-title:after {
  content: attr(data-subtitle);
  display: block;
  font-size: 16px;
  color:#aaa;
  padding-top: 10px;
}

.btn {
  display:inline-block;
  width:250px;
  background: #f8f8f8;
  color:#333;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  border-radius: 5px;
}

.btn:hover{
  opacity: 0.8;
}

/* header */
header h1 {
  margin-top: 0;
  font-weight: normal;
  font-size: 36px;
  margin-bottom:8px;
}

header p {
  margin-top:0;
  margin-bottom: 50px;
}

header .container{
  position: relative;
  height: 200px;

}

header img {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* portfolio */
.portfolio{
  border-radius: 10px;
  padding-left: 16px;
  padding-bottom:16px;
  margin-bottom:16px;
  background: #f8f8f8;
  height: 200px;
}

.portfolio h1 {
  color: #333;
  font-weight: normal;
  font-size: 30px;
  margin: 4px 8px 8px;
}

.portfolio img {
  background: #fff;
  border: 2px solid gray;
  border-radius: 25px;
  padding: 1px;
  width:140px;
  height: 140px;
}

.language {
  background: #f8f8f8;
  float: left;
  width:auto;
  width: 148px;
  margin: 0 8px;
}

.frameworks {
  background: #f8f8f8;
  float: right;
  width:auto;
}

.framework {
  width: 128px;
  margin: 0 8px;
  float: left;
}

.framework img {
  width:120px;
  height: 120px;
}

.framework p {
  margin: 0 auto 2px;
  font-size: 16px;
  font-weight:normal;
  text-align: center;
}

.clickable > img{
  box-shadow: 0 7px 0 gray;
  cursor: pointer;
}

.pressed > img{
  box-shadow: 0 2px 0 gray;
  margin-top: 5px;
}
.clickable > img:hover {
   animation-name: spin;
   animation-duration: 4s;
   animation-timing-function: ease-in-out;
   animation-fill-mode: forwards;
 }
 @keyframes spin {
   0% { transform: none; }
   50% { transform: none; }
   60% { transform: rotate(270deg) scale(0.6); border-radius: 50%; }
   75% { transform: rotate(360deg) scale(1.8) translateY(100px); }
   100% { transform: rotate(720deg) scale(1.0); }
 }

 .commingsoon {
   opacity: 0.6;
 }

/* footer */
footer {
    text-align: center;
}
p > a {
  color: #aaa;
  text-decoration: none;
}

p > a:hover {
  opacity: 0.8;
}
