
:root {
    --text-font-color: #FFFAF0;
    --text-redlight-color: #ff2424;
}

body {
    background: #696969;
    font-family: 'Raleway', sans-serif;
}

.blurb h1 {
    font-family: 'Kreon', serif;
    font-size: clamp(3.0rem, 5.0vw, 4.5rem);
    color: black;
}

.blurb h2 {
    font-family: 'Kreon', serif;
    font-size: 1.4rem;
    text-align: center;
    color:  black;
}

.blurb h3 {
    font-family: 'Kreon', serif;
    font-size: 1.8rem;
    color:  black;
}

.blurb h4 {
    font-family: 'Kreon', serif;
    font-size: clamp(3.0rem, 5.0vw, 4.5rem);
    color: black;
}

.inlineBold {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: black;
}

.blurb p {
    font-size: 1.125rem;
    font-weight: 100;
    line-height: 2.0;
/*    color: #f798b8; */
    color: var(--text-font-color);
}

.content {
    margin-top: 50px;
}
  
.caption {
    margin-left: 10px;
    margin-right: 10px;
    text-align: left;
    color: var(--text-font-color);
}

.TextInABox {
    border: 2px solid darkgray;
    padding: 12px;
    margin: 5px;   
    margin-top: 5px;
    margin-bottom: 10px;
    color: white;
}

.TextJustify {
    text-align: justify;
    text-justify: inter-word;
}

#mainNavbar {
    font-size: 1.2rem;
    font-weight: 100;
}

#mainNavbar .nav-link {
    color: rgb(104, 101, 255);
}

#mainNavbar .nav-link:hover {
    color: rgb(78, 253, 63);
    font-weight: 300;
}

#mainNavbar .navbar-brand {
    color: var(--text-font-color);
}

#headingGroup {
    color: var(--text-font-color);
}

#headingGroup span {
    /* color: var(--text-font-color); */
    color: white;
}

a:link {
    color: #08ee00;
  }
  
  /* visited link */
a:visited {
    color: #f8ae5a;
}

.navbar.scrolled {
    background: #696969;
    transition: background 500ms;
}

/* remove the left side offset for centered text */
.TrueCenter {
    text-align: center;
    margin: 0 0 0 0;
    padding: 0;
}

/* remove the left side offset for centered text */
.TextBlack {
    color:rgb(0, 0, 0);
}


.collapsible {  /* **************************************** collapsible Text START */
    background-color:  rgb(124, 124, 124);
    color: rgb(0, 0, 0);
    font-family: 'Kreon', serif;
/*		font-size: 1.6em; */
    font-size: clamp(1.25rem, 1.6vw, 1.6rem);
    cursor: pointer;
    padding: 5px 15px;  /* top bottom */
    margin-left: 10%;
    width: 80%;
    border: none;
    text-align: center;
    outline: none;
  }
  .active, .collapsible:hover {
    background-color:  rgb(180, 180, 180);
  }
  .content {
    font-family: 'Raleway', sans-serif;
    color: rgb(0, 0, 0);
    padding: 0 18px;
    margin-left: 10%;
    margin-top: 0px;
    margin-bottom: 5px;
    width: 80%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: rgb(204, 204, 204);
  }   /* **************************************** collapsible Text END */

/* when the browser width is 1200px or less do this */

@media (max-width: 1200px) {
    #mainNavbar {
        background: #696969;
    }
}
