@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght,ROND@6..144,1..1000,30&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@500&display=swap');

body{
	background: rgb(0,0,0);
	color: white;
}

p{
	font-family: "Google Sans Flex";
	font-weight: 500;
}

h1, h2, h3, h4{
    font-family: "Google Sans Flex";
    font-weight: 600;
		transition: 0.4s ease;
}

h5, h6{
	font-family: "Martian Mono";
}

h1::after,
h2::after,
h3::after,
h4::after,
h5::after,
h6::after {
    content: "";
		transition: 0.4s ease;
}

h1:hover::after,
h2:hover::after,
h3:hover::after,
h4:hover::after,
h5:hover::after,
h6:hover::after {
    content: " #";
    color: blueviolet;
}

strong, b{
	font-family: "Google Sans Flex";
	font-weight: 900;
}

em, i{
	font-family: "Google Sans Flex";
	font-weight: 500;
	font-style: italic;
}

a{
	font-family: "Google Sans Flex";
	font-weight: 500;
	color: blueviolet;
	text-decoration: none;
	transition: 0.2s ease;
}

a:hover{
	color: blueviolet;
	text-decoration: none;
}

code{
	font-family: "Martian Mono";
	background: rgb(33,33,33);
}

pre{
	font-family: "Martian Mono";
	background: rgb(33,33,33);
	padding: 4px;
}

blockquote{
	border-left: 2px solid blueviolet;
	padding-left: 6px;
}

hr{
	background: rgba(138, 43, 226, 0.6);
}

/* ---- Lists ---- */
ul, ol {
    font-family: "Google Sans Flex";
    font-weight: 500;
    color: white;
    padding-left: 1em;
    margin: 0.5em 0;
}

li {
    margin: 0.3em 0;
}

/* ---- Tables ---- */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Google Sans Flex";
    font-weight: 500;
    color: white;
}

th, td {
    border: 1px solid blueviolet;
    padding: 5px 8px;
}

th {
    background: black;
    font-weight: 700;
}
/* ---- Sidebar ---- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 200px;
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: #000;
}
.nat{
	font-family: "Google Sans Flex";
	color: rgba(255,255,255,0.6);
	padding: 10px;
	border-radius: 10px;
}
.at{
	font-family: "Google Sans Flex";
	color: white;
	padding: 10px;
	border-radius: 10px;
}
.nat:hover, .at:hover{
	background-color: rgb(75,75,75)
}
/* ---- Content ---- */
.content{
	margin-left: 200px;
	padding: 10px;
}
