body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #333333;
}

.container {
  margin: 0 auto;
  float:none;
  margin-top: 15px;
  overflow: hidden;
}


.header {
  border-bottom: 1px solid #e5e5e5;
}

.header h3{
  margin: 0;
  line-height: 40px;
  padding-bottom: 19px;
}

.nav {
  margin-bottom: 0px;
  padding-left: 0px;
  list-style: none;
}

.nav li {
  position: relative;
  display: block;
}

.nav-pills li {
  float: left;
}

.pull-right {
  float: right;
}

.nav li a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav-pills li a {
  border-radius: 4px;
}

.nav-pills li.active a {
  color: #fff;
  background-color: #337ab7;
}


.text-muted {
  color: #777777;
}

.row {
  display: table;
  height: auto;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
  padding: 15px 0;
}

.row div {
  display: table-cell;
  vertical-align: middle;
}

.row p {
  height: auto;
  text-align: center;
  animation-name: slidein;
  animation-duration: 3s;
  margin: 0;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 85%;
  margin-top: 25px;
  animation-name: fadein;
  animation-duration: 4s;
}

.project {
  width: 50%;
  max-width: 400px;
  min-width: 300px;
  border-top: 1px solid #EEE;
  border-left: 1px solid #EEE;
  border-radius: 25px;
  margin: 0 auto;
  margin-bottom: 20px;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}

.project:hover {
  background-color: #EEE;
}

.project h3 {
  text-align: center;
  margin-left: 5px;
  text-decoration: underline;
}

.project figure {
  height: 60%;
  width: 100%;
}

.project img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 24px;
  margin: 0 auto;
  display: block;
  padding: 10px 0;
}

.project .description {
  text-align: center;
}

.project a {
  color: #111;
}

.project a:hover {
  text-decoration: none;
  color: inherit;
}

.imagecol img {
  display: block;
  margin: 0 auto;
}

.sections div{
  overflow: hidden;
  margin: 10px 0;
  border-bottom: 1px solid #e5e5e5
}

.sections div div {
  border: none;
}

h3 {
  font-size: 24px;
  font-family: inherit;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #337ab7;
  background-color: transparent;
}

/* Animations */

@keyframes slidein {
  from {
    margin-left: 50%;
    width: 300%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
