body{
    background-color: lightblue;
}
a.button:link, a.button:visited{
    background-color: rgb(0, 4, 255);
    color: white;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
} 
a.button:hover , a.button:active {
    background-color: rgb(133, 241, 255);
    color: black;
}
table , th , td{
    border: 2px solid aliceblue;
    padding: 5px;
    text-align: center;
    border-radius: 15px;
}
th{
    background-color: rgb(122, 206, 255);
}
td{
    background-color: rgb(180, 255, 251);
}
table{
    background-color: darkblue;
}