
body {
  background-color: var(--brand-color);
}

.bold-white {
  width: fit-content;
  font-family: var(--CTA-font-family);
  font-weight: var(--CTA-font-weight);
  color:#fff;
  font-size: var(--CTA-font-size);
  letter-spacing: var(--CTA-letter-spacing);
  line-height: var(--CTA-line-height);
  white-space: nowrap;
  font-style: var(--CTA-font-style);
}

/* Helper Classes*/
.highlight-purple {
  background-color: var(--highlight-color-purple);
}

.base {
  max-width: 1440px;
  margin: auto;
  display: flex;
  direction: column;
}

.h4 {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: var(--accent-black-color);
  font-size: var(--h4-font-size);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  white-space: nowrap;
  font-style: var(--h4-font-style);
}

.citations {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: var(--accent-black-color);
  font-size: var(--h4-font-size);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  white-space: nowrap;
  font-style: var(--h4-font-style);
  margin-top: 20px;
}

.citation {
  margin-bottom: 8px;
}

.cite {
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  color: #9238FF;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.div-3 {
  align-self: stretch;
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  font-size: var(--body-font-size);
  letter-spacing: var(--body-letter-spacing);
  line-height: var(--body-line-height);
  font-style: var(--body-font-style);
}

.blockquote {
  align-self: stretch;
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  font-size: var(--body-font-size);
  letter-spacing: var(--body-letter-spacing);
  line-height: var(--body-line-height);
  font-style: var(--body-font-style);
  border: 1px solid #B981FF;
  background-color: #B981FF22;
  margin: 5px;
  padding: 10px 16px;
}

.blockquote-quote {
  font-size: 24px;
  color: #9238FF;
  font-weight: bold;
}

.quote-by {
  text-align: right;
  color:#9238FF;
}

.styled-quote {
    align-self: stretch;
    /* width: fit-content; */
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-size: var(--body-font-size);
    letter-spacing: var(--body-letter-spacing);
    line-height: var(--body-line-height);
    font-style: var(--body-font-style);
    background-image: url('img/bg-murmuration-min.png');
    margin: 5px;
    padding: 10px 16px;
    background-repeat: no-repeat;
    background-position: 50% 21%;
    background-size: 110%;
    background-color: #F9F6EDdd;
    background-blend-mode: lighten;
    border: 1px solid #00000011;
}
.dotList {
  list-style: disc;
  margin-left: 16px;
  margin-top: 10px;
}
.shortHR {
  border-bottom: 2px solid #00000099;
  width: 50px;
  margin: 10px 0;
}
.longHR {
  border-bottom: 2px solid #00000099;
}
.text-wrapper-3 {
  width: fit-content;
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  font-size: var(--h3-font-size);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  white-space: nowrap;
  font-style: var(--h3-font-style);
  margin-bottom: 10px;
}

.main {
  width: 100%;
  min-width: 640px;
  flex: 1;
}

/* Foundation Styles and Resets */
a {
  color: var(--brand-color-purple);
  font-weight: 600;
  transition: all 200ms ease-in-out;
  
}

  a:hover {
    color: var(--accent-color-purple);
    text-decoration: underline;
  }

/* Main Styles */
/* SECT: Header*/
  .navigation {
    display: flex;
    padding: 0 15px;
    align-items: center; /* Center-align items for smaller screens */
    flex-direction: row; /* Horizontal layout for larger screens */
    justify-content: space-between; /* Space out logo and navigation items */
    max-width: 1270px;
    margin: 32px auto;
  }
  .main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    flex-direction: row; /* Align children horizontally */
    justify-content: flex-end;
  }

  .main-nav-btn, .join-cta {
    width: fit-content;
  }

  .main-nav-btn:hover {
    color: var(--accent-black-color);
    text-decoration: none;
  }

  .murmur-logo {
    margin: 20px 0;
  }

  .join-cta {
    display: inline-flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 40px;
    flex: 0 0 auto;
    background-image: linear-gradient(to bottom right, var(--accent-color-purple), var(--brand-color-purple));
    border-radius: 100px;
    width: fit-content;
    font-family: var(--CTA-font-family);
    font-weight: var(--CTA-font-weight);
    color:#fff;
    font-size: var(--CTA-font-size);
    letter-spacing: var(--CTA-letter-spacing);
    line-height: var(--CTA-line-height);
    white-space: nowrap;
    font-style: var(--CTA-font-style);
    flex-grow: 0;
  }
  .join-cta:hover, .join-cta-2:hover {
    background-image: linear-gradient(to bottom right, var(--brand-color-purple), var(--accent-color-purple));
    cursor: pointer;
  }
  

.main-nav-btn {
  width: fit-content;
  font-family: var(--CTA-font-family);
  font-weight: var(--CTA-font-weight);
  color: var(--accent-black-color);
  font-size: var(--CTA-font-size);
  text-align: right;
  letter-spacing: var(--CTA-letter-spacing);
  line-height: var(--CTA-line-height);
  white-space: nowrap;
  font-style: var(--CTA-font-style);
}
/* SECT: Hero*/
.home-hero {
  margin-top: 160px;
  margin-bottom: 140px;
}
.hero-bg {
  background-color: var(--brand-color);
  object-fit: cover;
  mix-blend-mode: multiply;
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
}
.hero-vid {
  position:absolute;
  width: 1440px;
  overflow: hidden;
}
.overlap-11 {
  max-width: 1270px;
  padding: 0 15px;
  margin: auto;
}
.hero-content {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
  font-family: var(--large-body-font-family);
  font-weight: var(--large-body-font-weight);
  color: var(--accent-black-color);
  font-size: var(--large-body-font-size);
  letter-spacing: var(--large-body-letter-spacing);
  line-height: var(--large-body-line-height);
  font-style: var(--large-body-font-style);
}
.elevating {
  width: fit-content;
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  color: var(--accent-black-color);
  font-size: var(--h2-font-size);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  font-style: var(--h2-font-style);
}

.text-wrapper-20 {
  width: fit-content;
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  color: var(--accent-black-color);
  font-size: var(--h1-font-size);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  white-space: nowrap;
  font-style: var(--h1-font-style);
}
.the-problem-stats {
  margin-top: 370px;
}
.stats {
  display: inline-flex;
  align-items: flex-start;
  gap: 42px;
  flex: 0 0 auto;
}
.stats-top, .stats-bottom {
  display: inline-flex;
  flex-direction: row;
  gap: 42px;
}
.stat {
  display: flex;
  flex-direction: column;
  width: 215px;
  align-items: flex-start;
}
/* SECT: Mission*/
.our-mission {
  background-color: #fff;
  padding: 120px 0;
}
.overlap-10 {
  max-width: 1270px;
  padding: 0 15px;
  margin: auto;
  display: flex;
}
.BG-image-2 {
  filter: brightness(0.8)sepia(100%)saturate(0.4);
}
.our-mission-2 {
  max-width: 490px;
}
.steps {
  max-width: 596px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.steps .h4 {
  padding-top: 26px;
  padding-bottom: 8px;
}
.overlap-group-4 {
  width: 60px;
}
.ellipse-3 {
  position: relative;
  width: 27px;
  height: 27px;
  top: 0;
  left: 0;
}

.ellipse-4 {
  position: relative;
  width: 27px;
  height: 27px;
  top: 0;
  left: -8px;
}

.ellipse-5 {
  position: relative;
  width: 27px;
  height: 27px;
  top: -7px;
  left: 0;
}

.ellipse-6 {
  position: relative;
  width: 27px;
  height: 27px;
  top: -7px;
  left: -8px;
}
.icon {
  width: 46px;
  height: 46px;
}

.box {
  width: 50px;
  height: 22px;
  border: 4px solid;
  border-color: var(--brand-color-purple);
}

.box-2 {
  width: 50px;
  height: 22px;
  border: 4px solid;
  border-color: var(--brand-color-purple);
  margin-top: 6px;
}
.icon-2 {
  height: 50px;
}
/* SECT: Stack*/
.murmur-stack {
  max-width: 1270px;
  margin: auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: 1fr 7fr;
  grid-template-areas: 
    "stack-content costs"
    "our-rate costs";
  align-items: start;
  margin-top: 110px;
  margin-bottom: 180px;
}

.costs {
  width: 490px;
  grid-area: costs;
  margin-left: auto;
}
.img-3 {
  margin: 32px 0;
}
.our-rate {
  grid-area: our-rate;
  width: 490px;
}
.stack-content {
  grid-area: stack-content;
  width: 490px;
}
.amount {
  font-weight: var(--h1-font-weight);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  font-family: var(--h1-font-family);
  font-style: var(--h1-font-style);
  font-size: var(--h1-font-size);
}
.h5 {
  font-weight: var(--h5-font-weight);
  font-size: var(--h5-font-size);
  letter-spacing: var(--h5-letter-spacing);
  font-family: var(--h5-font-family);
  font-style: var(--h5-font-style);
  line-height: var(--h5-line-height);
  padding: 0 15px;
}
.cost-header {
  margin-bottom: 30px;
}
.cost .h4 {
  margin-bottom: 3px;
}
.rate {
  font-family: "ABC Diatype-Light", Helvetica;
  font-weight: 600;
  color: var(--brand-color-purple);
  font-size: 66px;
  letter-spacing: 0;
  line-height: 85.8px;
  white-space: nowrap;
}
/* SECT: Roadmap*/
.funding-roadmap {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: 1fr 2fr;
  grid-template-areas: 
    "roadmap-content funding-timeline"
    "donate funding-timeline";
  align-items: start;
  margin: auto;
  width: 100%;
  max-width: 1270px;
  padding: 0 15px;
}
.text-wrapper-9 {
  align-self: stretch;
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: var(--accent-black-color);
  font-size: var(--h4-font-size);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  font-style: var(--h4-font-style);
  margin-bottom: 10px;
}
.donate, .roadmap-content {
  width: 490px;
}
.caption {
  margin-bottom: 10px
}
.roadmap-content {
  grid-area: roadmap-content;
}
.donate {
  grid-area: donate;
}
.funding-timeline {
  background-image: url("img/timeline-ruler.svg");
  background-repeat: no-repeat;
  background-position-x: 103px;
  background-position-y: 24px;
  grid-area: funding-timeline;
  width: 640px;
  margin-left: auto;
}
.q {
  display: flex;
  flex-direction: row;
  max-width: 640px;
  justify-content: space-between;
}
.quarter {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: var(--accent-black-color);
  font-size: var(--h4-font-size);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  white-space: nowrap;
  font-style: var(--h4-font-style);
}
.outer-circle {
  display: flex;
  height: fit-content;
}
.inner-circle {
  position: relative;
  top: -25px;
  left: 9px;
  width: 16px;
  height: 16px;
  background-color: #cfbbef33;
  border-radius: 7.5px;
}
.roadmap-spot {
  width: 16px;
  height: 16px;
  background-color: var(--accent-black-color);
  border-radius: 7.5px;
  margin-top: 9px;
}
.roadmap-spot-2 {
  width: 16px;
  height: 16px;
  background-color: var(--brand-color-purple);
  background-image: linear-gradient(to bottom right, var(--accent-color-purple), var(--brand-color-purple));
  border-radius: 7.5px;
  margin-top: 9px;
}
.description {
  max-width: 488px;
  margin-bottom: 82px;
  padding-top: 9px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.roadmap-header {
  width: fit-content;
  font-family: var(--h5-font-family);
  font-weight: var(--h5-font-weight);
  color: var(--accent-black-color);
  font-size: var(--h5-font-size);
  letter-spacing: var(--h5-letter-spacing);
  line-height: var(--h5-line-height);
  font-style: var(--h5-font-style);
}


/* SECT: Team */
.the-team {
  max-width: 1440px;
  margin: auto;
  background-color: #fff;
}
.overlap-group {
  background-image: url('img/bg-image.png');
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: bottom;
}
.team-container {
  display: flex;
  flex-direction: row;
  max-width: 1270px;
  margin: auto;
  padding: 120px 15px 100px 15px;
  justify-content: space-between;
}
.profiles {
  display: flex;
  flex-direction: row;
  gap: 48px;
}
.text-wrapper-8 {
  font-family: "ABC Diatype-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 48px;
  white-space: nowrap;
}
.div-4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 382px;
}
.team-img {
  width: 382px;
  height: 445px;
}
.team-title {
  width: fit-content;
  font-weight: var(--h5-font-weight);
  color: #000000;
  font-size: var(--h5-font-size);
  line-height: 50%;
  position: relative;
  font-family: var(--h5-font-family);
  letter-spacing: var(--h5-letter-spacing);
  font-style: var(--h5-font-style);
  padding-top: 28px;
}

.team-name {
  width: fit-content;
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: #000000;
  font-size: var(--h4-font-size);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  white-space: nowrap;
  font-style: var(--h4-font-style);
}

.team-summary {
  align-self: stretch;
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  color: #000000;
  font-size: var(--body-font-size);
  letter-spacing: var(--body-letter-spacing);
  line-height: var(--body-line-height);
  font-style: var(--body-font-style);
}

/* SECT: Actions/Murmuration*/
.murmuration-bg {
  max-width: 1440px;
  margin: auto;
  /*top: 6280px;*/
  background: linear-gradient(#00000080, #00000080), url('img/bg-murmuration-min-crop.png');
  background-size: cover;
  color: #fff;
  background-position: 50% 30%;
}
.murmuration-section {
  display: flex;
  flex-direction: column-reverse;
  max-width: 1270px;
  margin: auto;
  padding: 100px 15px;
}
.murmuration-subsect {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-width: 0;
}
.div-2 {
  max-width: 845px;
}

.action-button {
  display: inline-flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 40px;
  flex: 0 0 auto;
  background-color: var(--accent-black-color);
  border-radius: 100px;
  margin-left: auto;
}

.text-wrapper-4 {
  width: fit-content;
  font-family: var(--CTA-font-family);
  font-weight: var(--CTA-font-weight);
  color: #ffffff;
  font-size: var(--CTA-font-size);
  letter-spacing: var(--CTA-letter-spacing);
  line-height: var(--CTA-line-height);
  white-space: nowrap;
  font-style: var(--CTA-font-style);
}

.HR {
  max-width: 1240px;
  height: 4px;
  margin: 100px 0 70px 0;
  background-color: #111;
}
.HR2 {
  max-width: 1240px;
  height: 2px;
  margin: 0px 0 10px 0;
  background-color: #111;
}
/* SECT: Articles */
.article-container {
  max-width: 1240px;
  margin: auto;
  margin-bottom: 80px;
}
.page-header {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
  font-family: var(--large-body-font-family);
  font-weight: var(--large-body-font-weight);
  color: var(--accent-black-color);
  font-size: var(--large-body-font-size);
  letter-spacing: var(--large-body-letter-spacing);
  line-height: var(--large-body-line-height);
  font-style: var(--large-body-font-style);
  margin-bottom: 40px;
}
.articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.article-card {
  width: 381px;
  height: 453px;
  box-sizing: border-box;
  border-bottom: 4px solid #000;
  margin-bottom: 40px;
  cursor: pointer;
}
.article-card-img {
  width: 100%;
  height: 267px;
  background-color: #000;
  color: #fff;
  padding: 20px;
  font-family: var(--body-font-family);
  font-size: 14px;
}
.article-card-text {
  padding: 20px;
}
.article-card-title {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: var(--accent-black-color);
  font-size: var(--h4-font-size);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  font-style: var(--h4-font-style);
}

.article-img {
  width: 100%;
  height: 630px;
  color:#000;
  margin: auto;
  font-weight: bold;
  font-family: var(--body-font-family);
  margin-bottom: 20px;
  align-content: center;
  text-align: center;
}
.article-title {
  width: fit-content;
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  color: var(--accent-black-color);
  font-size: var(--h2-font-size);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  font-style: var(--h2-font-style);
  margin-bottom: 20px;
  margin-top: 60px;
}
.hide {
  opacity: 0;
}
.article-text {
  margin: 0 16px;
}
.article-link {
  width: fit-content;
  font-family: var(--CTA-font-family);
  font-weight: var(--CTA-font-weight);
  color: #9238FF;
  font-size: var(--CTA-font-size);
  text-align: right;
  letter-spacing: var(--CTA-letter-spacing);
  line-height: var(--CTA-line-height);
  white-space: nowrap;
  font-style: var(--CTA-font-style);
}

.article-cite {
  margin: 0 16px;
}

sup {
  font-size: 12px;
  vertical-align: super;
  font-weight: bold;
}

/* SECT: Footer*/
.footer {
  background-color: var(--accent-black-color);
  flex-shrink: 0;
}
.footer-content {
  max-width: 1270px;
  margin: auto;
  padding: 70px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.footer-bottom {
  display: flex;
  max-width: 1270px;
  margin: auto;
  padding: 10px 15px;
}
.left-content {
  float: left;
}
.logo {
  height: 22px;
}
.social {
  display: flex; /* Ensure it's flex to utilize gap and align-items */
  gap: 29px;
  height: 24px;
  width: 180px;
  /* Remove float:none; if it's set somewhere */
  justify-content: flex-end; /* Center the social icons */
  order: 2;
}
.social-link {
  align-content: center;
}
.links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.p {
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  color: #ffffff;
  font-size: var(--body-font-size);
  letter-spacing: var(--body-letter-spacing);
  line-height: var(--body-line-height);
  white-space: nowrap;
  font-style: var(--body-font-style);
  width: 100%;
  justify-content: flex-start;
  order: 1;
  margin: auto;
}
.link {
  width: fit-content;
  font-family: var(--CTA-font-family);
  font-weight: var(--CTA-font-weight);
  color: #ffffff;
  font-size: var(--CTA-font-size);
  text-align: right;
  letter-spacing: var(--CTA-letter-spacing);
  line-height: var(--CTA-line-height);
  white-space: nowrap;
  font-style: var(--CTA-font-style);
}


/* SECT: Low Res Monitor */
@media (max-width: 1440px) {
  .hero-bg {
    display: none;
  }
  .home-hero {
    margin-top: 160px;
    margin-bottom: 140px;
    background-image: url(img/bg-hero-video-static.png);
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode: multiply;
    background-position-y: 32%;
  }
}
@media (max-width: 1280px) {
  .overlap-10 {
    display: block;
  }
  .stats {
    flex-direction: column;
  }
  .stats-bottom {
    margin:auto;
  }
  .article-title {
    margin-top: 0px;
  }
  .article-img {
    height: fit-content;
  }
  .article-card {
    margin: auto;
    margin-bottom: 40px;
  }
  .article-container {
    min-width: 640px;
    padding: 0 50px;
  }
  .hide {
    display: none;
  }
}
@media (max-width: 1024px) { 
  .overlap-10 {
    display: block;
  }
  .our-mission-2 {
    margin-bottom: 48px;
  }
  .stats, .stats-top, .stats-bottom {
    flex-direction: column;
  }
  .stat-layout {
    flex-direction: row;
    display: flex;
    width: 400px;
    gap: 48px;
  }
  .stat-layout .div-3 {
    align-content: center;
    margin-left: auto;
    width: 200px;
  }
  .murmur-stack {
    display: block;
    margin-bottom: 120px;
  }
  .stack-content {
    margin-bottom: 50px;
  }
  .our-rate {
    margin-top: 70px;
  }
  .costs {
    margin: 0;
  }
  .funding-roadmap {
    display: block;
  }
  .funding-timeline, .steps {
    margin-left: unset;
  }
  .roadmap-content {
    margin-bottom: 50px;
  }
  .donate {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .team-container, .profiles {
    flex-direction: column;
    gap: 48px;
    margin: auto;
  }
}
/* SECT: Mobile*/
@media (max-width: 700px) { /* Adjust breakpoint as needed */
  .body {
    min-width: 640px;
  }
  .navigation {
    flex-direction: column;
  }
  .murmur-logo {
    height: 40px;
  }
  .main-nav {
    width: 490px;
    margin-bottom: 20px;
    justify-content: space-around;
    
  }
  .main-nav-btn {
    font-size: 26px;
    padding: 25px 0;
  }
  .join-cta {
    font-size: 24px;
    height: 90px;
  }
  .funding-roadmap {
    min-width: 640px;
    padding: 0;
  }
  .funding-timeline, .donate, .roadmap-content {
    padding: 0 15px;
  }
  .the-team, .murmuration-bg, .our-mission, .home-hero, .navigation {
    min-width: 640px;
  }

  .murmuration-subsect {
    flex-direction: column;
    gap: 20px;
  }
  .action-button {
    margin-left: unset;
  }
  .text-wrapper-4 {
    font-size: 22px;
  }
  .footer {
    min-width: 640px;
  }

  .footer-content, .footer-bottom {
    flex-direction: column; /* Stack items vertically on mobile */
  }
  .footer-content {
    padding-top: 50px;
    padding-bottom: 5px;
  }
  .left-content, .links, .social, .p {
    width: 100%; /* Ensure they take full width */
    text-align: center; /* Center-align the content, adjust as needed */
  }
  .links {
    margin-top: 25px;
  }
  .link {
    font-size: 22px;
  }
  .bold-white {
    font-size: 22px;
  }
  .social {
    display: inline-flex;
    gap: 29px;
    height: 24px;
    width: 100%;
    justify-content: center;
    margin: 20px 0px;
    order: 1;
  }
  .p {
    order: 2;
  }
}
