body {
	background-color: lightgray;
}

/* Personal Page */

#about-me {
	color: red;
}

#hobbies {
	color: blue;
}

#education {
	color: orange;
}

.ul1 {
	font-weight: bold;
}

.ul2 {
	font-weight: bold;
}

.ul3 {
	text-decoration: underline;
}

.ul4 {
	text-decoration: underline;
}

.personal a:hover {
	font-size: 24px;
}

/* Schedule Page */

.coursecat td {
	text-align: center;
}

.coursecat th {
	color: green;
}

.coursecat tr:nth-child(even) {
	background-color: lightblue;
}

.events > li > ol {
	list-style-type: upper-alpha;
}
	
/* Account Page */
input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
	background-color: gray;
	cursor: pointer;
}

input[type="radio"]:checked {
    background-color: green;
}

input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    background-color: gray;
	cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: blue;
}