body {
    font: 18px Roboto, Arial, "Noto Sans", sans-serif;
    height: 97vh;
    width: 99vw;
    color: #eed;
    background: #123;
}

.parent {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    line-height: 0.5;
}

table, tbody {
    border: white 1px solid;
}

th, td {
    padding: 3px 5px;
}

tbody tr:nth-child(odd) {
  background-color: #234;
}

li {
    text-align: left;
    display: list-item;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li:before {
    content: '\00a0- ';
}

a:link,
a:visited {
    color: #eed;
    border-bottom: 1px #eed solid;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    background-image: linear-gradient(#eed, #eed);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-position: bottom;
}

a:hover {
    color: #000;
    background-image: linear-gradient(#eed, #eed);
    border-bottom: solid 0px transparent;
    background-size: 100% 100%;
}
