html {
  height: 100%;
  background: #e3e3e3;
  font-size: 11px;
}

body {
  height: 100%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  align-items: center;
  -webkit-align-items: center;
  margin: 0;
}

.portfolio-item {
  display: flex;
  padding: 0px;
  background-color: #fff;
  font-size: 12pt;
}

.portfolio-item:nth-child(even) {
  background-color: #eee;
}

.thumbnail-column {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.description-column {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0px 20px 0px 20px;
  text-align: left;
  font-weight: normal;
}

.thumbnail {
  width: 100%;
  margin-right: auto;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}

.buttons {
  margin-top: 10px;
  font-size: 11pt;
}

.btn {
  display: inline-block;
  padding: 8px 15px;
  margin: 5px;
  background-color: #3d7d94;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}

.btn:hover {
  background-color: #144151;
}

.description-title {
  font-size: 14pt;
  font-weight: bold;
}

.description-text {
  font-size: 12pt;
  max-width: 600px;
}