/* Style Sheet for index.html */
body
{
    background-color:white;
}
 .button {
    background-color: #4CAF50;
    /* Green */
    border: red;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
.button2 {
    background-color: #008CBA;
}
/* Blue */
 .button3 {
    background-color: #f44336;
}
/* Red */
 .button4 {
    background-color: #e7e7e7;
    color: black;
}
/* Gray */
 .button5 {
    background-color: #555555;
}
/* Black */
 .borderred {
    border: 2px solid Red;
}
.borderblue {
    border: 3px solid Blue;
}
p {
    color:black;
    font:"Geometos Soft", arial;
}
.red {
    color:red;
    font:"Geometos Soft", arial;
}

a:link {
  color: green; 
  background-color: transparent; 
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}