/* Method one: element type */
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 28px;
}

/* Method Two: id */ 

.table1{
     background-color: aqua;
     margin: 10px;
     padding: 10px;
     border-collapse: collapse;
     border-style: solid;
     border-width: 15px;
     border-color: black;
     outline-style: solid;
     outline-width: 5px;
     outline-color: gray;
    }
h1{
    text-align: center;
}

td {
    border: 3px solid rgba(0, 4, 255, 0.568);
    padding: 8px;
    text-align: left;
}

th {
    border: 3px solid;
    text-align: left;

}


tr:nth-child(even) {
    background-color: red;
    color: yellow;
}

#header {
    background-color: green;
}


/* Method Three: class */
.mylist{
    font-size: 28px;
    background-color: rgba(137, 43, 226, 0.205);
}

a:link{
    color:blue
}

a:visited{
    color:purple
}

a:hover{
    color: red;
}

a:active{
    color: black;
}

ul
{
  list-style: circle;  
}
/* Method Four : * */
