/* BIG GRAY SECTION */
.section {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-right: 1px solid var(--header-footer-bg);
  background: var(--section-alt);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.sectionTitle {
  margin-bottom: 20px;
}
.sectionBody {

}

/* SMALL LINEAR SECTION */
.smallSection {
  height: 10vh;
  width: auto;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--header-footer-bg);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.smallSectionBody {
  height: 100%;
  gap: 20px;
}
.smallSection img {
  height: 80%;
}

/* TINY LINEAR SECTION */
.tinySection {
  height: 5vh;
  width: fit-content;
  padding: 10px;
  border-radius: 10px;
  background: var(--header-footer-bg);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.tinySection img {
  height: 100%;
  margin-right: 10px;
}
.tinySection p {
  margin-right: 10px;
}
