body {
  color: #666;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 19px;
  letter-spacing: .3px;
  line-height: 1.25em;
  margin: 0;
}

::selection {
  background: #038dee;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #038dee;
  color: #fff;
  text-shadow: none;
}

a {
  color: #038dee;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}

p {
  line-height: 1.7em;
  margin: 0 0 10px;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes grayToColor {
  from {
    filter: grayscale(100%);
  }

  to {
    filter: grayscale(0);
  }
}

ul,
ol {
  margin: 0;
  padding: 0;
}
ul,
ol li {
  list-style: none;
  padding: 0;
}

#container {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 20px auto;
  max-width: 850px;
  padding: 20px 40px;
}

header {
  border-bottom: 1px solid #eee;
  color: #404040;
  cursor: default;
  padding: 20px 0;
}

h1 {
  color: #038dee;
  display: inline-block;
  font-size: 65px;
  letter-spacing: -2px;
  padding: 0;
  margin: 0;
  display: inline-block;
}
h1:after {
  font-size: 45px;
  letter-spacing: 1px;
  content: '//';
  padding-left: 15px;
}

h2 {
  font-size: 35px;
  letter-spacing: 1px;
  line-height: 35px;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.content {
  animation: fadein 2s;
  padding: 20px 0;
}

.content.home {
  padding-top: 0;
}

.home section {
  padding: 30px 0;
  border-bottom: 1px dotted #eee;
  display: flex;
}
.home section img {
  animation: grayToColor 2s;
  margin-right: 20px;
  align-self: center;
  display: inline-block;
}
.home section ul {
  padding: 10px 0;
  vertical-align: top;
  display: inline-block;
}
.home section ul li {
  padding: 10px 0;
}


.work h3 {
  font-size: 35px;
  color: #000;
  margin: 0;
  padding: 20px 0;
}

.work .project {
  width: 28%;
  vertical-align: top;
  display: inline-block;
}
.work .project img {
  width: 100%;
  margin-top: 20px;
  border-radius: 3px;
  box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
}
.work .description {
  width: 60%;
  margin: 0 0 40px 40px;
  display: inline-block;
}
.work .description li {
  list-style: disc;
  padding-bottom: 10px;
}

/* mobile */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  #container {
    border: none;
    margin: 0;
    padding: 20px;
  }

  header {
    padding-top: 0;
  }

  h1 {
    font-size: 45px;
    padding-bottom: 15px;
    display: block;
  }
  h1:after {
    display: none;
  }

  h2 {
    font-size: 30px;
    letter-spacing: 0;
  }

  .home section {
    text-align: center;
    display: block;
  }
  .home section ul {
    text-align: left;
  }

  .work .project {
    width: 100%;
    display: block;
  }
  .work .description {
    width: 90%;
    margin: 20px;
    display: block;
  }
}

/* tablet (vertical) */
@media only screen and (min-device-width : 768px) and (max-device-width : 911px) {
  section.home li {
    width: 45%;
    margin-bottom: 20px;
  }
}
