.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

#logo-color {
  margin-bottom: 40px;
  margin-top: calc(50vh - 100px);
}

h1 {
  font-size: 60px;
  line-height: 0.9;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background-image: radial-gradient(circle at 50% -30vh, #ffd687 0, #fb766a 50vh, #9d2f6a 90vh, rgba(32, 31, 66, 0) 150vh);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 992px) {
  h1 {
    font-size: 120px;
  }
}

#navigation {
  position: fixed;
  top: 0;
  z-index: 2000;
  width: 100%;
}

.bio {
  padding-bottom: 12rem;
}

.bio h2 {
  color: #fff9cb;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.8em;
}

.bio h3 {
  color: #ffb0c4;
  font-weight: bold;
  margin-bottom: 1.2em;
}

.bio p {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 2em;
}

