/* Headings */

/* Large hero heading */
.hero-heading {
  font-size: 3.5rem;
  color: #151315;
  font-weight: 700;
}

/* Large heading */
.large-heading {
  font-size: 2.5rem;
  color: #151315;
  font-weight: 700;
}

/* Medium heading */
.medium-heading {
  font-size: 2rem;
  color: #151315;
  font-weight: 700;
}

/* Small heading with underline */
.small-heading {
  font-size: 22px;
  color: #151315;
  text-decoration: underline;
  font-weight: 500;
  margin: 1rem 0;
}

/* Body text */

/* Primary body text */
.primary-text--bold {
  font-size: 18px;
  font-weight: 500;
  color: #3D3D4D;
}

.primary-text--regular {
  font-size: 18px;
  font-weight: 400;
  color: #3D3D4D;
}

li.primary-text--bold {
  margin: 0;
}

/* Emphasized text */
.emphasized-text {
  font-size: 18px;
  color: #3D3D4D;
  font-style: italic;
  font-weight: 500;
}

/* Strong text */
.strong-text {
  font-size: 18px;
  color: #151315;
  font-weight: 600;
}

/* Link text */
.link-text {
  font-size: 18px;
  color: #1A61DB;
  font-weight: 500;
}

.custom-list {
  padding: revert;
  margin: revert;
}

.level-1 {
  display: list-item;
  margin: 0.4rem 0;
  width: fit-content;
  width: -moz-fit-content;
}

.level-2 {
  display: list-item;
  margin: 0.25rem 0 0.25rem 20px;
  width: fit-content;
  width: -moz-fit-content;
}

.scroll-padding {
  scroll-margin-top: 100px;
}

.assignment-cards__card--closed-assignment {
  background-color: #F2F2F2;
}

/* Buttons */
.button {
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  height: 56px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
}

.primary-button {
  background: #1A61DB;
  color: #FFFFFF;
  border: none;
}

.secondary-button {
  background: #FFFFFF;
  color: #1a61db;
  border: solid #1A61DB;
}