:root {
	--primary-color: white;
	--secondary-color: #7D7D7D;
	--bg-color: #1B1212;
	--light-bg-color: #545454;
}

@font-face {
  /* for headers */
  font-family: "dm-sans";
  src:
      url("/fonts/dm-sans/dm-sans-latin-900-normal.woff2") format(woff2),
      url("/fonts/dm-sans/dm-sans-latin-900-normal.woff") format(woff);
}

@font-face {
    font-family: "fira-code";
    src:
        url("/fonts/fira-code/fira-code-latin-400-normal.woff2") format(woff2),
        url("/fonts/fira-code/fira-code-latin-400-normal.woff") format(woff);
}
html, body {
	font-family: "fira-code";
    line-height: 27px; /* 4px +12px + 4px */

    background-color: var(--bg-color);
    color: var(--primary-color);
    margin: 0;
    padding: 0;
}

h1 {
    font-family: "dm-sans"
}
a {
    color: var(--primary-color);
}

a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.header{
    width: 100%;
    height: 80%;
    background-color: var(--bg-color);
    padding: 20px;
}
.container {
    display: flex;
    justify-content: space-around;
    align-content: center;
}

.avatar-wrapper{
    width: 40px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--primary-color);
    border-radius: 20px;
    border: 3px solid;
}

.socials{
    display: flex;
    padding-right: 10px;
    gap: 1em;
    border: 1px solid;
    background-color: var(--primary-color);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 20px;
    align-items: center;
}

.navigation{
    display: flex;
    align-items: center;
    gap: 1em;
}

.avatar{
    width: 100%;
    height: 100%;
}

main {
	max-width: 800px ;
	margin: auto ;
}

img {
	max-width: 100% ;
}

header h1 {
	text-align: center ;
}

footer {
	text-align: center ;
	clear: both ;
}

/* For TAGLIST.HTML */
.taglist {
	text-align: center ;
	clear: both ;
}

/* For NEXTPREV.HTML */
#nextprev {
	/* The container for both the previous and next articles. */
}
#prevart {
	float: left ;
	text-align: left ;
}
#nextart {
	float: right ;
	text-align: right ;
}
#nextart,#prevart {
	max-width: 33% ;
}
