html, body {
    width: 100%;
    height: 100%;
}

header {
    z-index: 10000;
}

main {
    z-index: 1000;
}

header a.nav-link {
    font-weight: bold;
}

footer {
    border-top: solid 1px #d7d7d7;
}

footer > .container-fluid > .container-xl {
    height: 80px;
}

footer > .container-fluid > .container-xl p {
    margin-bottom: 0;
}

.top-banner {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    background: #f5f5f5;
    border-bottom: solid 1px #d7d7d7;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 2px 4px 0px;
}

.top-banner.small {
    height: 200px;
}

.top-banner > .top-banner-background {
    position: absolute;
    inset: 0;
    background-position: 0 15%;
    background-repeat: no-repeat;
    background-size: cover;
}

.top-banner .top-banner-background:after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.top-banner .top-banner-content {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    
    padding-top: 40px !important;
    /* padding-bottom: 40px !important; */
    
    background-color: rgba(50, 50, 50, .7);
}

.top-banner .top-banner-content img {
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

header {
    background-color: rgba(255,255,255,.7);
}

footer .copyright-text {
    font-size: 8pt;
}

@media (min-width: 992px) {
    footer .copyright-text > p > span {
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .main-menu.main-menu__simple {
        flex-direction: column !important;
    }
}

.main-menu {
  &.main-menu__simple {
      list-style-type: none;
      display: flex;
      flex-direction: row;
      justify-items: center;
      
      li {
          a, a:visited {
              color: #FFF; 
          }
          
          a:hover {
              color: #92bcf9;
          }
          
          font-weight: bold;
          margin: 0 1rem;
      }
  }  
} 


/* Debug Styles */
/*
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.umb-block-grid__area {
    border: solid 1px Red;
}
*/

blockquote {
    background: #DDD;
    border-radius: 20px;
    padding: 50px;
    
    font-size: larger;
}