@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 */

    margin: 0;
    padding: 0;
}

h1 {
    font-family: "dm-sans";
    text-align: center;
}

a:hover {
    filter: brightness(90%);
    text-decoration: underline;
}

.header{
    width: 100%;
    height: 80%;
    padding: 20px;
}
.underline{
    text-decoration: underline;
}
.header:hover{
    text-decoration: underline;
}
.header:a {
    text-decoration: none;
}
.blink{
    animation: blinker 1s step-start infinite;
    display: inline-block;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

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% ;
}
