html {
    scroll-behavior: smooth;
}

:target:before {
    content: "";
    display: block;
    height: 100px;
    margin: -50px 0 0;
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

.sidebar {
	height: 60px;
	background-color: #075d7a;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}


.sidebar a {
	color: #fff;
	float: left;
	text-align: center;
	line-height: 40px;
	height: 40px;
	padding: 0 20px;
	text-decoration: none;
}

.sidebar a:hover {
	background-color: #fff;
	color: #075d7a;
}

.sidebar a.active {
	background-color: #fff;
	color: #075d7a;
}

.main-content {
	margin-top: 60px;
	padding: 20px;
}

.main-content h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

.main-content ul {
	margin-left: 30px;
	font-size: 18px;
	line-height: 1.5;
}

.main-content li {
	margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
	.sidebar a {
		float: none;
		display: block;
		width: 100%;
		height: auto;
		line-height: normal;
	}
}
