/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: auto;
  margin-right: auto;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  margin-left: 20%;
  margin-right: 20%;
  min-height: 100vh;
  background-color: blue; /* For browsers that do not support gradients */
  background-image: linear-gradient(to bottom, rgb(35,20,170), rgb(20,5,15));
  background-attachment: fixed;
}
header {
  color: rgb(96,214,96);
}
h1 {
  padding-right: 25px;
  padding-bottom: 5px;
  text-shadow: -1px -1px 0 #237, 1px -1px 0 #237, -1px 1px 0 #237, 1px 1px 0 #237;
  color: rgb(96,214,96);
}
#date {
  font-family: "ibmvga8";
  padding-left: 15px;
  padding-right: 20px;
  padding-bottom: 10px;
  color: rgb(96,214,96);
}
#content {
  padding-top: 25px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 30px;
  font-size: 16px;
  color: rgb(96,214,96);
  background-color: rgba(0,0,0,0.7)
}

footer {
  font-family: "ibmvga8";
  height:60px;
  margin-top: 0px;
  margin-bottom: 15px;
  min-width: 50%;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  position: relative;
  bottom: 0px;
  font-size: 16px;
  color: rgb(96,214,96);
  background-color: rgba(0,0,0,0.7)
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
color: rgb(0,116,245);
}

figcaption {
  font-style: italic;
  text-align: center;
  margin-bottom: 15px;
}

nav[aria-label="pagination"] {
  font-family: "ibmvga8";
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  color: rgb(96,214,96);
  background-color: rgba(0,0,0,0.7)
}

hr {
  background: radial-gradient(circle, white, rgb(0,0,125,0.4));
  height: 5px;
  border: 0;
  margin-bottom: 5px;
}


.logo {
  font-family: microgramma; font-size: 60pt; color:rgb(255, 229, 33);
  text-decoration: none;
  text-shadow: -1px -1px 8px #0a7, 1px -1px 8px #0a7,
          -1px 1px 8px #0a7, 1px 1px 8px #0a7;
}

.cont {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(max(150px, 34%), 1fr));
}

.contdown {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(max(150px, 34%), 1fr));
  align-items: end;
}

.row {
  display: flex;
}

.column {
  flex: 33.33%;
  padding: 5px;
}

.avatar {
  display: inline;
}

:root {
--font-headings: belwe;
}
h1, h2, h3, h4, h5, h6 {
font-family: "belwe";
 }

@font-face {
font-family:ibmvga8;
src:url(/css/fonts/WebPlus_IBM_VGA_8x16.woff) format('woff');
}

@font-face {
font-family:albertus;
src:url(/css/fonts/albertusmedreg.woff) format('woff');
}

@font-face {
font-family:belwe;
src:url(/css/fonts/belwemediumbt.ttf);
}

@font-face {
font-family:microgramma;
src:url(/css/fonts/microgramma.otf);
}

nav, footer, {
font-family: "ibmvga8";
 }

#content {
font-family: "albertus";
 }

@media (max-width: 1325px) {
 body {
   margin-left: 15%;
   margin-right: 15%;
 }
}

@media (max-width: 700px) {
 body {
   margin-left: 2%;
   margin-right: 2%;
 }
#content {
  padding-left: 20px;
  padding-right: 20px;
}
.logo {
  font-size: 10vw;
 }
footer {
 height: 90px;
 }
}
