    *
    {
        /* so padding reaches top and sides*/
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

/* header of page css ----------------------------*/

    /* code for header blending in when scrolling */
    #headerBlock.scrolled 
    {
        background-color: white; /* Change this to scroll choice color */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 75px;
        transition: background-color 0.3s ease-in-out;
        z-index: 999;
    }

    /* code for white padding block/header */
    #headerBlock
    {
        padding: 2px;
        transition: background-color 0.3s ease-in-out;
        background-color: #ccbed4;  /* color to blend header into image*/
    }

    /* code for font size of logo home button */
    #headerBlock p
    {
        font-size: 1.5em; 
        margin: 20px;
    }

    /* get rid of underline of logo link */
    #headerBlock a
    {
        text-decoration: none; 
    }

    /* code for dropdown menu size/location */
    #headerBlock span
    {
        font-size: 30px;
        cursor: pointer;
        float: right;
        width: 50px; 
        margin: 20px;
    }

    /*Overlay*/
    .overlay {
        height: 0; /*No height comes from top*/
        width: 100%; /*Width comes from top*/
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: rgb(0,0,0); /*Color of drop*/
        background-color: rgba(0,0,0, 0.9); /*With opaticy*/
        overflow-x: hidden;
        overflow-y: hidden;
        transition: 0.5s;
    }

    /*How the content is postioned in overlay*/
    .overlay-content {
        position: relative;
        top: 25%;
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

    /*How the links will look inside the display*/
    .overlay a 
    {
        padding: 8px;
        text-decoration: none;
        font-size: 36px;
        color: rgb(162, 162, 162);
        display: block;
        transition: 0.3s;
    }

    /*On mouse hover changes style of links*/
    .overlay a:hover, .overlay a:focus 
    {
        color: #335e7e;
    }

    /*Where the close button while be*/
    .overlay .closebtun 
    {
        position: absolute;
        top: 20px;
        right: 45px;
        font-size: 60px;
    }

    /* body section ----------------------------------*/

    body 
    {
        /* font style and color of entire body*/
        font-family: 'Merriweather Sans', sans-serif;
        background-color: #335e7e;
    }
    
    .the_title {
        text-align: center;
        letter-spacing: -.02em;
        font-size: 32px;
        line-height: 40px;
        margin-top: 2em;
        color: white;
    }
    .the_title_text {
        max-width: 820px;
        text-align: center;
        margin: 16px auto 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        color: white;
    }

    .contact-us-box {
        width: 25%;
        height: 200px;
        background-color: #ccbed4;
        float: right;
        display: table-column;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 7em;
        margin-bottom: 7em;
        padding: 20px;
        border-radius: 5px;
        margin-right: 15em;
    }
    
    
    .contact-us-box p {
        font-size: medium;
        word-spacing: 2px;
        line-height: 1.5;
        text-align: left;
        margin: 10px 0; 
    }
    
    .contact-form-container {
        margin-top: 40px;
        width: 50%;
        margin: 7em;
        margin-left: 3em;
        margin-right: 3em;
        margin-bottom: 7em;
        color: white;
    }
    
    .contact-form {
        display: flex;
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-form label {
        display: block;
        margin-top: 10px;
    }
    
    .contact-form input,
    .contact-form textarea {
        margin-bottom: 10px;
        padding: 5px;
        font-size: 16px;
        border: 1px solid transparent;
        border-radius: 5px;
    }
    
    .contact-form input:hover,
    .contact-form textarea:hover {
        border: 4px solid #cd9ee9;
    }
    
    .contact-form textarea {
        resize: vertical;
    }
    
    .contact-form button {
        background-color: #cd9ee9;
        color: #000;
        border: none;
        padding: 5px 15px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 20px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 12px;
        transition: 0.3s;
    }
    
    .contact-form button:hover {
        background-color: #cd9ee9;
        color: white;
    }

    .email{
        font-size: medium;
    }





/* page footer below-------------------- */
.footer-container
  {
    background-color: #ccbed4;
    padding: 4rem 0 8rem 0;
  }

  .logoFooter{
    margin: 20px 100px;
  }

  /*footer basics*/
  .footer
  {
    width: 80%;
    height: 25vh;
    background-color: #ccbed4;
    color: black;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: sticky;
    bottom: 0;
    margin-left: 11rem;
  }

  /*footer organization*/
  .footer-info
  {
    display: flex;
    flex-direction: column;
    margin-right: 2rem;
  }

  /*footer anchor details*/
  .footer-info a
  {
    color: black;
    text-decoration: none;
    margin-bottom: 2rem;
    margin-right: 5rem;
  }

  /*hover color footer*/
  .footer-info a:hover
  {
    color: #cd9ee9;
    transition: 0.1s ease-out;
    text-decoration: underline;
  }

  .unorderd_list{
    font-size: medium;
    word-spacing: 2px;
    width: 600px;
    margin-left: 8em; 
    margin-bottom: 3em;
  }