@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

:root {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace !important;
  line-height: 1.5;
  background: #040804 !important;
  color: #42C882;
}

body,
article,
footer {
  max-width: 72ch;
}

a {
  text-decoration: underline;
  color: #42C882;
}

a:hover,
a:focus {
  text-shadow: 0 0 10px #42C882, 0 0 15px #42C882;
}

article,
footer {
  width: 51.5rem;
  max-width: calc(100% - 6rem);
  border-radius: 5px 5px 0 0;
  padding: 1em 2rem 0 2rem;
  border-bottom: none;
  font-size: 15px;
  text-align: left;
  text-shadow: 0 0 3px #42C882, 0 0 3px #42C882;
}

article p:nth-last-child(2) {
  padding: .8rem 0;
  border-radius: 7px;
  font-size: 14px;
}

footer {
  border-radius: 0 0 5px 5px;
  width: 54rem;
  max-width: calc(100% - 3.6rem);
  margin-bottom: 1em;
  margin: 0;
  padding: 0 2rem 1em 2rem;
}

footer a,
footer p {
  padding: 0 !important;
  position: relative;
}

@keyframes blink {
  0% {
    width: 0;
    opacity: 0;
  }
  
  50% {
    width: 12px;
    opacity: 1;
  }
  
  100% {
    width: 0;
    opacity: 0;
  }
}

h1 {
  margin-top: 0;
  color: #42C882 !important;
  font-weight: normal;
  padding: 0;
  line-height: 36px;
  text-shadow: 0 0 5px #42C882, 0 0 5px #42C882;
}

::selection {
  background: #42C882;
  color: black;
}