body, ul, li, p, a, label, input, div {
  font-family: 'Roboto', sans-serif;
  font-size: 18px !important;
  font-weight: 300 !important;
}

.h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 48px !important;
  font-weight: 200 !important;
}

.h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 30px !important;
  font-weight: 300;
}

.card {
  transition: all 0.3s;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
  transform: translateY(-5px);
}

.card.selected {
  background-color: #59ab6e;
  color: white;
}

.card.selected .card-title, .card.selected i {
  color: white;
}

.content-section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.content-section.active {
  display: block;
  opacity: 1;
}

#bg-canvas {
  position: absolute;
  /*top: 0;*/
  /*left: 0;*/
  z-index: -1;
  pointer-events: none;
}

#main-div > *:not(#bg-canvas) {
  position: relative;
  z-index: 1;
}

