#about-me{
    color: blue;
}

#hobbies{
    color: red;
}

#education{
    color: purple;
}

.bold{
    font-weight: bold;
}

.italic{
    font-style: italic;
}

.underline{
    text-decoration: underline;
}

a:hover{
    font-size: 150%;
}

.center-table {
  text-align: center; 
}

.center-table th {
    color:aqua;
}
.center-table tr:nth-child(even) {
    background-color: gold; /
  }
  

  ol ol {
    list-style-type: upper-alpha;
  }

  input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: grey;
    border: 2px solid #000;
    border-radius: 50%; 
    cursor: pointer;
  }
  
  input[type="radio"]:checked {
    background-color: green;
  }
  
  input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: grey;
    border: 2px solid #000;
    cursor: pointer;
  }
  
  input[type="checkbox"]:checked {
    background-color: blue;
  }