/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body { margin:0 auto; max-width: 444px; }

  
 /* unvisited link */
a:link {
  color: #2eb82e;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: black;
  background-color: #2eb82e;
}

/* selected link */
a:active {
  color: yellow;
} 


/* p.seoblock */
  .seoblock 
  {
    color: #0d0e1d; 
  font-family: Courier;
  font-size: 0.3em;  
}


/*p.pagefootertext { */
  .pagefootertext { 
    color: #aa4165; 
  font-family: Courier;
  font-size: 0.9em;  
}



.button {
  background-color: #8902a0;
  border: none;
  color: white;
  padding: 11px 1px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  transition-duration: 0.1s;
  cursor: hand;
  width: 92%;
  position: relative;
  left: 4%;
  border-radius: 10px;

}

.frontindexbutton {
  color: #c8dcd0;
   /*  white-space: nowrap; the nowrap would cause an overflow if the content is longer than the parent element and/or the screen.  */
}

.frontindexbutton:hover {
  background-color: #6c2dab;
  color: #fff;
}



.purplebuttontofrontpage {
  background-color: #8902a0;
  border: none;
  color: white;
  padding: 11px 55px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  transition-duration: 0.1s;
  cursor: hand;

  width: 90%;     
  border-radius: 10px;
  white-space: nowrap; /* the nowrap would cause an overflow if the content is longer than the parent element and/or the screen.  */
  
}

    
  .purplebuttontofrontpage:hover {
  background-color: #6c2dab;
  color: #fff;
}

