/* --- COMPONENT STYLES --- */

.footer {
  text-align: left;
  margin: 0 auto;
  width: min(80vw, 1200px);
  height: auto;
}
.footer p {
  font-size: 10px;
  color: var(--text-main);
}

.headingBanner {
  display: block;
  border-radius: 15px;
  max-width: 175px;
  height: auto;
  margin: 0 auto 0 auto;
}

.dualBodyImgsDiv {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.dualBodyImg {
  max-height: 250px;
  max-width: 490px;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
}

.txtCEOMsg {
  margin: 0 auto;
  width: min(80vw, 1200px);
  max-width: 65ch;
  text-align: center;
  color: var(--text-main);
}

@media (max-width: 640px) {
  .txtCEOMsg {
    margin: 0 auto;
    width: min(80vw, 1200px);
    max-width: 65ch;
    text-align: left;
  }
}

.textBlock {
  background-color: var(--glass-med);
  -webkit-backdrop-filter: var(--blur-heavy);
  backdrop-filter: var(--blur-heavy);
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--shadow-light);
  height: auto;
  margin: 20px auto 0 auto;
  width: min(80vw, 1200px);
  text-align: left;
}

.textBlock p {
  max-width: 65ch;
  margin: 10px auto;
  color: var(--text-main);
  text-align: left;
}

.textBlock ul, h3 {
  color: var(--text-main);
}

.ulWrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px auto;
}

.ulWrapper ul {
  padding: 0;
  margin: 0;
  text-align: left;
  list-style-position: outside;
  max-width: 65ch;
  padding-left: 1.5rem;
}

.ulWrapper li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.pageTitle {
  width: min(80vw, 1200px);
  text-align: center;
  margin: 0 auto;
}
.pageTitle h1 {
  color: var(--text-main);
  margin: 0 auto;
}


.textBlockHeader, .textBlock h3 {
  text-align: center;
}

/* Targets any link that opens in a new tab */
.externalLink::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  color: lightblue;
  
  /* This giant block of text is the SVG icon code */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='lightblue' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
  
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  /* Keeps it aligned with the center of your text */
}



@media (max-width: 640px) {

  /* Slightly scale down the background planes so they aren't overwhelming */
  .plane {
    font-size: 1.5rem; 
  }

  /* Centers the flex container */
  .logo-container {
    justify-content: center;
  }

  /* Removes the right margin so it's perfectly mathematically centered */
  .nav-logo {
    margin-right: 0;
    height: auto;
    max-width: 70px;
  }
}

.listWithStars {
  list-style-type: '🏆';
  line-height: 2;
  font-size: 20px;
}