@charset= "UTF-8";

body {
    margin: 10px;
	font-family: Helvetica, sans-serif;
	font-size: 20px;
}

h1 {
	font-size: 20px;
}

ul {
	list-style: square;
}

.profile {
	width: 20%;
}

.collapsible {
	cursor: pointer;
	text-align: left;
	font-family: Helvetica, sans-serif;
	font-size: 20px;
	text-decoration: underline;
}

.active, .collapsible:hover {
	cursor: pointer;
	text-decoration: underline;
}

.content {
	display: none;
	cursor: pointer;
}

@media (prefers-color-scheme: light) {
	:root {
	color: black;
	background-color: white;
	}
	a {
		color: blue;
	}
	a:visited {
		color: blue;
	}

	a:hover{
		color: blue;
	}
	.collapsible {
		color: blue;
	}
	.active, .collapsible:hover {
		background-color: white;
		cursor: pointer;
	}
}


@media (prefers-color-scheme: dark) {
	:root {
	color: white;
	background-color: #2F2F2F;
	}
	a {
		color: white;
	}
	a:visited {
		color: white;
	}

	a:hover{
		color: white;
	}
	.collapsible {
		color: white;
	}

	.active, .collapsible:hover {
		background-color: #2F2F2F;
		cursor: pointer;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	body {
		font-size: 18px;
		margin: 10px;
	}
	h1 {
		font-size: 18px;
	}
	.collapsible {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 18px;
		margin: 10px;
	}
	h1 {
		font-size: 18px;
	}
	.collapsible {
		font-size: 18px;
	}
	.profile {
	width: 60%;
	}
}