body {
    background-color: yellow;
}

h1 {
    color: red;
    font-family: Arial;
    font-size: 48px;
}

h2 {
    color: black;
    font-family: Arial;
    font-size: 36px;
    text-align: left;
}

ol {
    color: red;
    font-family: Arial;
    font-size: 16px;
    list-style-type: lower-alpha;
}

a:link {
    color: purple;

}

a:visited {
    color: white;
}

a:hover {
    color: black;
}

a:active {
    color: blue;
}

table {
    margin-left: 50px;
    padding: 50px;
    border-style: solid;
    outline-style: solid;
    outline-color: red;
    outline-offset: 10px;
}

th {
    text-align: left;
}

tr {
    text-align: left;
}

tr:nth-child(odd) {
    background-color: red;
}
