@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");


.button-lg {
  padding: 0.7rem 1rem;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  font-weight: 500;
  margin-bottom: 1rem;
  min-width: 120px;
  text-align: center;
}

.button-primary {
  background-color: var(--standard-green) !important;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button-primary:hover {
  color: #fff;
  background-color: var(--dark-green) !important;
}

.button-secondary {
  background-color:  var(--light-green) !important;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;  
}
.button-secondary:hover {
  color: #fff;
  background-color: var(--standard-green) !important;
}

#canvas {
  height: 100%;
  background: #29303b;
}

#controls {
  position: absolute;
  z-index: 10;
  top: 160px;
  right: 10px;
  padding: 2rem;
  font-family: "PT Sans", sans-serif;
  background-color: var(--lightest-grey);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 180px;
}

.icon-label-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #fffffe;
  margin: 0;
  padding: 0;
  height: 55px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icon-label-container i {
  color: var(--light-green) !important;
  font-style: normal;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;  
}
.icon-label-container:hover {
  color: #fffffe;
  text-decoration: none;
}
.icon-label-container:hover i {
  color: var(--standard-green) !important;
  cursor: pointer;
}

.icon-large {
  font-family: FontAwesome;
  font-weight: 900;
  color: #fffffe;
  font-size: 3rem;
}

.icon-white {
  color: white;
}






























