html{

    font-size: 20px;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Sets height to 100% of the Viewport Height */
    background-color: #000000;
}
body{

    background-color: black;
    color: greenyellow;
    text-align: center;
    font-family: monospace;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh; /* Sets height to 100% of the Viewport Height */
    background-color: #000000;
    
}

table{
    background-color: black;
}
tr{
    color: darkred;
    background-color:gray;
    width:100px;
    text-align: center;
}
td{
    background-color: darkslategrey;
    color:white;
}
hr{
    color: rgb(52, 64, 67);
}

h1,h2,h4,h5,h6{
    color: red;
    font-family: monospace;
}

p{
    font-weight: bold;
    color: lightblue;
}

a{
    color: blue;
}

a:visited,a:hover{

    color: purple;
}
ul,li{
    text-align: left;
    color: red;
}

u{

    color: red;
}

h3{ font-family: monospace;
    color: yellow;
}