body {
  background-color: #f9f1ea;
  color: #d81556;
  font-family: 'Courier New', Courier, monospace;
}

a {
  text-decoration: none;
  color: #d81556;
}

.collage {
  text-align:center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 820px;
}

.collageimg {
  border: 3px solid #2c0505;
}

.print {
  position: relative;
  margin: 5px;
  margin-left: auto;
  margin-right: auto;
}

.sketch {
  position: relative;
  margin: 5px;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transition: .5s ease;
  opacity: 0;
  background-color: rgba(249, 241, 234,0);
}

.collage:hover .overlay {
  opacity: 1;
  background: rgba(249, 241, 234, 0.9);
}

.print:hover .overlay {
  opacity: 1;
  background: rgba(249, 241, 234, 0.9);
}

.sketch:hover .overlay {
  opacity: 1;
  background: rgba(249, 241, 234, 0.9);
}

.desc {
  color: #d81556;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}