body {
  font-family: Tahoma, Verdana, sans-serif;
  background-color: #202020;
  color: #e0e0e0;
}

.logo { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  padding: 20px; 
  font-size:5em; 
}

.text {
  text-align: center;
  padding: 0px 100px;
}

.text p {
  background-color: #303030;
  padding: 0px 100px;
}

.content {
  display: flex; 
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px; 
  font-size:2em;
  align-items: center;
  justify-content: center;
}

.portrait {
  background-color: #303030;
  margin: 8px 8px; 
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 4px;
}

.portrait:hover {
  background-color: #606060;
}

.portrait > a {
  height:auto;
  width:auto;
}

.portrait > a > img {
  max-height:256px;
  max-width:480px;
  height:auto;
  width:auto;
}

.link {
  display: flex; 
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .8em;
}

.link > div {
  display: flex; 
  flex-direction: column;
  align-items: center; 
  padding: 20px;
}

.link > div:hover {
  background-color: #303030;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
}

.watermark {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}

.watermark > div {
  opacity: 0.25;
}

.watermark > div:hover {
  opacity: 1.0;
}