*{
    margin: 0;
    padding: 0;
    box-sizing: 0;
}

body {
    background: yellow;
}

h1 {
    color: #2c04ae;
    font-size: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

p {
    color:#2c04ae;
    font-size: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

a {
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 25px;
    font-weight: 900;
    color:rgb(0, 0, 92);
}

a:hover {
    background: blue;
    color: yellow;
}

a:visited{
    text-decoration: line-through;
}

table {
    border: blue 2px solid;
    direction: center;
    margin: auto;
}

th {
    border: rgb(1, 1, 116) 2px solid;
    color:#2c04ae;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    text-align: center;
}

td {
    border:rgb(1, 1, 116) 2px solid;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    /*text-align: center;*/
}

/*tr {
    color: yellow;
}*/

.alinear {
    text-align: right;
}

tr {
    color: rgb(0, 0, 136);
}
table tr:hover {
    background-color: rgb(1, 4, 172);
    color: yellow;
    cursor: pointer;
  }
