body{
margin-top: 15px;
background-color: #f7f2db;
}


/* Variables */
:root {
    --container-color: #1a1e21;
    --second-color: #fd8f44;
    --text-color: #172317;
    --bg-color: #fff;
    --blue-font: #051a5d;
    --blue-light: rgb(25, 60, 143);
    --blue-hover: rgb(102, 161, 216);
    --selection-font: rgb(36, 132, 206);
    --selection-back: white;
    --home-back: #f5eab6;
    --home-back-light: #f7f4e3;
    --grey-light: #777777;
  }
  
/* selection code  */
::selection {
    color: var(--selection-font);
    background: var(--selection-back);
  }


.masthead {
    margin-top: 5px;
    padding: 3rem 0 7rem;
    position: relative;
    background-color: var(--home-back-light);
    /* background-image: url(https://startbootstrap.com/assets/img/overlay.svg), 
    linear-gradient(45deg, #dff2e2 0%, #f9fbbd 100%); */
    background-size: cover;
    z-index: 0
}

.masthead svg.wave {
    position: absolute;
    bottom: -1px;
    left: 0
}

/* Match masthead h4 font with gpt.html */
.masthead h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #444;
}


.masthead h1 {
    color: var(--blue-font);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.1;
    z-index: 1
}

.masthead h4 {
    /* color: rgba(45, 43, 43, 0.6); */
    font-weight: 600;
    z-index: 1;
    font-size: 1.2rem
}

.masthead a {
    color: var(--blue-font);
    text-decoration: underline;
    z-index: 1
}

.masthead a:hover {
    color: var(--selection-font)
}

.masthead a:active {
    text-decoration: none
}

@media(min-width:992px) {
    .masthead h1 {
        font-size: 3rem
    }
    .masthead h2 {
        font-size: 1.5rem
    }
}

.masthead .masthead-cards {
    position: relative;
    z-index: 1
}

.masthead .masthead-cards .shape {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%
}

.masthead .masthead-cards .card {
    opacity: 1;
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .05rem;
    color: #051a5d;
    transition: .15s all
    
}

.masthead .masthead-cards .card:hover {
    margin-top: -.25rem;
    margin-bottom: .25rem
    
}

.masthead .masthead-cards .card:active {
    margin-top: inherit;
    margin-bottom: inherit
}

.masthead .masthead-cards .card.border-bottom-blue:hover {
    color: #28a745
}

.masthead .masthead-cards .card.border-bottom-green:hover {
    color: #ad8715
}

.masthead .masthead-cards .card.border-bottom-red:hover {
    color: #2092ed
}

.masthead .masthead-cards .card.border-bottom-yellow:hover {
    color: #dd3d31
}

.masthead-page {
    padding: 1rem 0 4rem
}

@media(min-width:992px) {
    .masthead-page h1 {
        font-size: 2.5rem
    }
}

.border-bottom-yellow {
    border-color: #ffc107!important;
}

.border-bottom-red {
    border-color: #dd3d31!important;
}

.border-bottom-blue {
    border-color: #2092ed!important;
}

.border-bottom-green {
    border-color: #28a745!important;
}

.border-bottom-blue, .border-bottom-green, .border-bottom-red, .border-bottom-yellow {
    border-bottom: .4rem solid!important;
}
.shadow-lg {
    box-shadow: 0 2rem 1.5rem -1.5rem rgba(33,37,41,.15),0 0 1.5rem .5rem rgba(33,37,41,.05)!important;
}
.border-0 {
    border: 0!important;
}