/* Banner on the index page
 */
.banner-top {
    position: relative;
}

.banner-top img {
  display: block;
  margin-inline: auto;
  width: 90vw;
  max-height: 35vw;
  object-fit: cover;
}

.banner-title > * {
    position: absolute;
    top: 20px;
    left: 0; 
    right: 0; 
    margin-inline: auto; 
    width: fit-content;
}

.banner-splat {
    fill: #6DBBAD;
    top: 0;
    width: 400px;
    height: 400px;
}

.banner-text {
    padding-top: 60px;
    padding-left: 30px;
    text-align: center;
}

@media only screen and (max-width: 770px) {
    .banner-splat, .banner-text {
        display: none;
    }
}

/* readable defaults for text content
 */

.intro-content > h1, .intro-content > h2 {
    font-family: Helvetica, serif;
}

.intro-content > p {
    font-size: 14pt;
    margin: 5px auto;
    max-width: 600px;
}

.section-header {
    position: relative;
    display: flex;
    justify-content: center;
    height: 50px;
    align-items: center;
    margin-bottom: 30px;
}
.section-header > hr {
    width: 40vw;
    color: transparent;
    border-top: dotted 6px darkslategray;
    position: absolute;
    top: 3px;
}
.section-header > a {
    font-size: 20pt;
    text-decoration: none;
    color: #325D54;
    padding-inline: 15px;
    margin-top: 40px;
    border-bottom: 4px solid #639b94;
    border-right: 4px solid #639b94;
    text-align: center;
    background-color: #b3e7ff;
}

.bg-row-a-color {
    background-color: #baf8ed;
    justify-content: center;
    margin-inline: auto;
    width: 90vw;
    padding-bottom: 3px;
}

