@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;600&display=swap');

body{
	font-family: 'Work Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	color: #333;
}
#app{
	margin: 30px auto 15vh;
	width: 960px;
	max-width: calc(100% - 60px);
}
hr{
	border:none;
	border-top:1px solid rgba(0,0,0,0.1);
	margin: 60px auto;
}

li{
	list-style: none;
	margin-bottom: 10px;
}
li a{
	font-weight: 400;
}
li a,
li a:hover:after{
	color: blue;
}
li a:hover{
	text-decoration:underline;
}
li a:hover:after{
	text-decoration:none;
}
h1, h2, h3, h4{
	font-weight: 600;
}

h3{
	margin: 30px 0;
	font-weight: 300;
	font-size: 2rem;
}
li{
	/*border: 1px solid #000;*/
	/*padding: 20px;*/
	/*color: #444;*/
	/*font-style: italic;*/
	font-size: 14px;
	border-left: 1px solid #eee;
	padding: 2px 20px;
}
li a{
	display: block;
	text-decoration: none;
	font-style: normal;
	font-size: 18px;
}
li a:after {
	content: attr(href);
	display: block;
	font-size: 10px;
	color: #000;
	opacity: 0.8;
	margin-bottom: 5px;
	max-width: 240px;
	text-overflow: ellipsis;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
}
li a:hover:after{
	opacity: 1;
}


ul {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 10px;
}
@media(min-width: 480px){
	ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media(min-width: 768px){
	ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}
@media(min-width: 992px){
	ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}
}