* {
  margin: 0;
  padding: 0;
  }

body {
  background-color: #fff;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400; 
  font-style: normal;
  color: #212121;
}

a:link {
  color:  #212121;
  text-decoration: none;
  border-bottom: 1px solid #212121;
  display: inline-block;
  margin-bottom: 0px;
}

a:hover {
  transition: ease-in, 0.3s;
  border-bottom: 1px solid #ffffff;
}

a: :visited {
  color:  #212121;
  text-decoration: none;
  border-bottom: 1px solid #212121;
  display: inline-block;
  margin-bottom: 2px;
}

.wip {
  padding: 0px 16px 0px 16px;
}

p{
  font-size: 1em;
  letter-spacing: 0.4px;
  line-height: 1.3em;
  padding-top: 22px;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 300; 
  font-style: normal;
}

.col-1 {
  width: 375px;
  height: 100%;
}

header {
  position: fixed;
  width: 100%;
  padding-top: 24px;
  top: 0;
  left: 16px;
  display: flex;
  justify-content: flex-start;
  z-index: 1;
}

header nav a {
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 24px;
  cursor: pointer;
}

header nav a:hover {
  background-color: #000;
  transition: ease-in, 0.3s;
  color: #fff;
}

header nav a.selected {
  background-color: #000;
  transition: ease-in, 0.3s;
  color: #fff;
}

.content {
  padding: 72px 16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.content img{
  padding-bottom: 4px;
  width: 100%; 
 }

 .caption {
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.1px;
  margin-bottom: 24px;
}

.content .intro {
  width: 50%;
  padding-right: 16px;
}

.content .workshops {
 width: 50%;
 padding-left: 16px;
 border-left: 1px solid #000;
}

.content .intro p {
  padding-bottom: 13px;
  line-height: 1.4em;
}

.content .workshops p {
  font-size: 0.8em;
  line-height: 1.5em;
}
.content a {
  display: block;
}

.content .intro a{
  display:inline;
}

/* 
header {
  position: fixed;
  width: 100%;
  top:  0;
  left: 0;
  display:flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

h1 {
  margin-left: 200px;
  width: 100px;
  background-color: rosybrown;
  display: block;
  height: 64px;
}

header nav a {
  margin-left:  10px;
  margin-right: 20px;
  transition: border 0.3s ease-in;
  border-bottom: solid 1px rgba(0, 0, 0, 0);
  padding-bottom:  1px;
}

header nav a:hover {
  border-bottom: solid 1px #fff;
  padding-bottom: 1px;

}

header nav a.selected {
  border-color: #fff;
}


.photos {
  max-width: 1080px;
  margin-left:  auto;
  margin-right: auto;
  display:  flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 140px;
  justify-content: center;
}

.photo {
  width: 360px;
  margin: 10px;
  vertical-align: bottom;
  position: relative;
}

.small {
  width: 240px;  
}

.large {
  width: 460px;  
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width:  100%;
  height:  100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;

}

.photo:hover .overlay {
  opacity: 1;
}

.photo h2 {
  position:  absolute;
  top: -15px;
  left: -15px;
  font-size:  32px;
  line-height: 1.2;
}

.photo img {
  transition: filter 0.3s;
}

.photo:hover img {
  filter: grayscale(100%);
}

@media (max-width: 640px) {
  .list{
    font-size: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .list a img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 340px;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .list a:hover {
    color: yellow;
  }
}
*/
