/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
}

/* Headers */
h1 {
    text-align: center;
}

/* Section Headers */
.about-section { color: blue; }
.hobbies-section { color: green; }
.education-section { color: red; }

/* Education List Formatting */
ul li:nth-child(1) { font-weight: bold; }
ul li:nth-child(2) { font-style: italic; }
ul li:nth-child(3) { text-decoration: underline; }

/* Links Hover Effect */
a:hover {
    font-size: 150%;
}

/* Table Formatting */
table {
    width: 80%;
    border-collapse: collapse;
    margin: 20px 0;
}

th {
    background-color: navy;
    color: white;
    text-align: center;
}

td {
    text-align: center;
}

tr:nth-child(even) {
    background-color: lightgray;
}

/* Form Elements */
input[type="radio"]:checked {
    background-color: green;
}

input[type="checkbox"]:checked {
    background-color: blue;
}
