/* This styles all <h1> elements */

h1 {
  
color: pink;
/* Sets text color */ 
text-align: center;    
/* Centers the text */

}
header, footer{
background: blue;
}
footer p{
color: pink;
}
a {
color: pink;
background-color: blue;
}
body {
 background-color: turquoise;
}
table, th, td {
  border: 1px solid black;
  border-radius: 10px;
  border-color: indigo;
}
