*
  {
    /* 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;
  }


  /* page body below---------------------*/

  body 
  {
    /* font style and color of entire body*/
    font-family: 'Merriweather Sans', sans-serif;
    background-color: #335e7e;
    color: white;
  }
  
  .container-blocks {
    margin-top: 3em;
  }

  #block1 {
    display: flex;
    align-items: center;
  }
  
  .block1-content {
    margin: 6em;
    width: 70%;
    font-size: 1.5em;
    margin-left: 4em;
  }
  
  .block1-content h2 {
    font-size: larger;
    word-spacing: 2px;
  }
  
  .block1-content p {
    font-size: large;
    word-spacing: 2px;
    line-height: 1.5;
    width: 700px;
  }
  
  

/*block2---------------------*/

#block2 {
    display: flex;
    align-items: center;
  }
  
  .block2-content {
    margin: 6em;
    width: 70%;
    font-size: 1.5em;
  }
  
  .block2-content h2 {
    font-size: larger;
    word-spacing: 2px;
  }
  
  .block2-content p {
    font-size: large;
    word-spacing: 2px;
    line-height: 1.5;
    width: 800px;
  }

  
  .imageright
  {
    float: right;
    margin: 30px 60px;
    width: 400px;
    height: 500px;
    margin-right: 8.5em;
    border: 5px solid #cd9ee9;
    border-radius: 10%;
    margin-top: 5rem;
  }

  .unorderlist{
    margin-left: 4em;
    font-size: large;
    word-spacing: 2px;
    line-height: 1.5;
    width: 1000px;
    list-style: square;
  }
  

   /* first section. adjust height, image, and information accordingly */
  .intro 
  {
    background-image: url('../images/AGBig.JPG');
    background-size: cover;
    background-position: center;
    height: 400px;
  }

  .intro-text{
    font-size: 2em;
  }
  

  /* 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;
      margin: 0 auto;
      position: sticky;
      bottom: 0;
  }

  /*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;
  }



  