/* all cols */
.flex-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
  align-items: stretch;
  min-height: 95%;
}

.flex-item {
  margin: 10px;
  padding: 20px;
  flex-grow: 1;
  flex-basis: 25%;
}

/* col1 */
#col1 { background-image: linear-gradient(75deg, #610 50%, #400 50%); }

/* col2 */
#project {
  background-image: linear-gradient(-30deg, #ee8 50%, #ee3 50%);
  flex-grow: 2;
  flex-basis: 50%;
}

#toppic { text-align: center; }
#toppic img {
  border-radius: 50%;
  max-width: 50%;
}

.largeimg * {
  width: 100%;
}

.largeimg, .smallimg { text-align: center; }

.smallimg * {
  width: 35%;
  margin: 0 auto;
}

.video {
  width: 50%;
  margin: 0 auto;
}

#updated {
  color: #666;
  text-align: right;
}

/* col3 */
#projectList {
  background-image: linear-gradient(20deg, #050 50%, #030 50%);
  animation: fadein 1.5s;
  color: #eee;
}
.linklist { display: none; }

/* For Mobile Site */
@media screen and (max-width: 640px){
  .flex-wrapper {
    flex-flow: column nowrap;
    justify-content: space-between;
  }
  .flex-item { flex-grow: unset; }
}
