html, body,
ul, ol, li,
h1, h2, h3, h4, h5, h6, p, div {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN W3', sans-serif;
  text-align: center;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: white;
}

* {
    box-sizing: border-box;
}

.container {
    background-color: #000066;
    width: 100%;
    height: 100vh;
    padding: 30px 0px 0px 0px;
    margin: 0;
    color: white;
}

h2 {
    padding-bottom: 30px;
    color: yellow;
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    border-color: white
}

th, td {
    border: solid 2px white;
}

th {
    padding: 5px;
    text-align: center;
    background-color: #222222;
}

td {
    padding: 3px 5px;
    text-align: left;
    background-color: #666666;
}