body {
    background-color: rgb(30, 30, 80);
}
table {
    border: 2px solid black;
    width: 100%;
    border-collapse: collapse;
}
tbody tr:hover {
    color: rgb(200, 200, 200);
    background-color: rgb(0, 0, 100);
}
th {
    border: 2px solid #7a3f3f;
    padding: 15px;
    text-align: center;
    color: rgb(200, 200, 255);
    background-color: rgb(20, 20, 20);
}
td {
    border: 2px solid #7a3f3f;
    padding: 15px;
    text-align: center;
    color: rgb(200, 200, 255);
    background-color: rgb(20, 20, 40);
}


h1 {
    text-align: center;
    color: rgb(200, 250, 200);
}
h2 {
    text-align: center;
    color: rgb(200, 250, 200);
}
h3 {
    text-align: center;
    color: green;
    color: rgb(50, 50, 150);
}
p {
    text-align: center;
    color: rgb(0, 50, 150);
}

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;
}
