

html,
body {
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-decoration: none;
}

header {
}

#logo {
    display: block;
    margin: 50px auto;
    width: 100%;
    max-width: 33vw;
}

.container {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    text-decoration: none;
}

.container .column {
    padding: 15px;
    text-align: center;
    text-decoration: none;
}
.container .heading {
    flex-basis: 100%;
    grow: 1;
    text-align: center;
    font-size: 2.7em;
    text-decoration: none;
}
.site-link {
    display: inline-block;
    margin: 0 0 50px 0;
    border: solid 1px #333333;
    padding: 5px 20px;
    color: #333333;
    font-size: 40px;
    text-transform: capatilize;
    text-decoration: none;

}
.site-link:hover {
    border-color: #000000;
    background: #333333;
    color: #FFFFFF;
}

figure.work-tile {
    display: inline-block;
    margin: 0 auto;
    margin-left: 0;
    width: 100%;
    max-width: 370px;
    min-width: 150px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}
figure.work-tile {
    box-sizing: border-box;
    transition: all 0.45s ease;
}
figure.work-tile:before,
figure.work-tile:after {
  background-color: rgba(255, 255, 255, 0.25);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 0;
  transform: scaleY(2);
}
figure.work-tile img {
    vertical-align: top;
    max-width: 100%;
    backface-visibility: hidden;
}
figure.work-tile img:hover ~ figcaption {
    z-index: 30;
}
figure.work-tile figcaption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1em;
    opacity: 0;
    z-index: 2;
    transition-delay: 0.1s;
    color: #000000;
    font-size: 20px;
    font-weight: normal;
}
figure.work-tile figcaption a {
    display: inline-block;
    margin: 15px;
    border: solid 1px #000000;
    padding: 15px;
    color: #333333;
    font-size: 20px;
    text-decoration: none;
}
figure.work-tile figcaption a .sub {
    font-size: 14px;
}
figure.work-tile:hover:before,
figure.work-tile:hover:after {
  transform: scale(1);
  opacity: 1;
}
figure.work-tile:hover > img {
  opacity: 0.7;
}
figure.work-tile:hover figcaption {
  opacity: 1;
}

.bio-tile .popup-trigger {
  display: block;
  width: 100%;
  padding: 50% 0;
  color: inherit;

}

footer {
}
