@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap');

.t-primary-bgcolor {
	background-color: #333;
}

a {
	color: #FE9900;
}

body {
	background-color: #fff;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.header__logo img {
	max-width: 100px;
}

.header__nav {
	font-family: "Source Code Pro", sans-serif;
	font-size: 0;
}

.header__nav a {
	font-size: 16px;
	margin-left: 38px;
	color: #000;
}

.header__nav a:hover {
	text-decoration: none;
}

.container {
	width: 1000px;
}

.main {
	padding: 3em 0;
}

.sidebar {
	margin-right: 3em;
}