
body{
    background-color:#ff00aa;
    text-align:center;
    transition: background-color 1s linear;
    text-decoration: none;
    color: black;

}
.header{background-color:#ff4dc4;
    
    font-size: 60px;
    padding-top: 3%;
    padding-bottom: 4%;
    color:#FCF7F8;
    ;
}

.div1{margin:56px;
    font-size: 30px;

}
body:hover{
    background-color: #ffb3e6;
}

.table, th, td {
  border: 3px solid black;
  text-align: center;
}

.center {
  margin-left: auto;
  margin-right: auto;
}




/* Making the Navigation Bar */
.navbar{
    width: 100%;
  }
  
  .navbar ul{
    list-style: none;
    background: #ff00aa;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .navbar li{
    display: inline-block;
  }
  
  .navbar a{
    text-decoration: none;
    color: #FCF7F8;
    width: 90pt;
    display: block;
    padding: 14px 25px;
    font-size: 18px;
    text-align: center;
  }
  
  .navbar a:hover{
    background-color: #ff4dc4;
  
  }