body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: black;
}
a {
  text-decoration: none;
  color: inherit;
  font-weight: 400;
  cursor: pointer;
}
a.active{
  font-style: italic;
  cursor: default;
}
a[href]:hover{
  text-decoration: underline;
}
.flex-center-vertically {
  display: flex;
  justify-content: center;
  align-items: center;}
.flex-center-vertically > .flex-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-center-vertically > .flex-item > .left-item,
.flex-center-vertically > .flex-item > .right-item{
  display: block;
}
.flex-center-vertically > .flex-item > .left-item{
  text-align: right;
}
.flex-center-vertically > .flex-item > .right-item{
  text-align: left;
}
.flex-center-vertically > .flex-item > .separator{
  display: block;
  text-align: center;
}
.full-h {
  height: 100%;
}
.almost-full-h {
  height: 95%;
}
.almost-full-w {
  width: 90%;
}
.almost-half-w {
  width: 40%;
}
.small-w {
  width: 6%;
}
.mb3 {
  margin-bottom: 3rem;
}
.mb4 {
  margin-bottom: 4rem;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.transparent-font {
  color: transparent;
}
.black-font {
  color: black;
}
.base-size-font {
  font-size: 1rem;
}
.big-font {
  font-size: 3rem;
}
.medium-font {
  font-size: 1.2rem;
}
.bold {
  font-weight: bold;
}
