.body {
  height: 100%;
  background-color: #ffdcbd;
  font-family: 'Space Mono', sans-serif;
  color: rgba(133, 99, 0, .8);
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.jade-icon {
  width: 100%;
  max-width: 70px;
  margin-bottom: 1rem;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.jade-icon:hover {
  padding-bottom: 1rem;
}

.jade-text {
  width: 90%;
  max-width: 300px;
  font-size: 0.85rem;
  line-height: 1.1rem;
  text-align: center;
  letter-spacing: -0.01rem;
}

.link {
  border-bottom: 1px dotted rgba(133, 99, 0, .8);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: rgba(133, 99, 0, .8);
  text-decoration: none;
}

.link:hover {
  padding-bottom: 0.3rem;
}

