:root {
  --black: #111111;
  --white: #eeeeee;
}

* {
  user-select: none;
  box-sizing: border-box;
  font-family: 'IBM Plex Mono';
  color: var(--white);
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url(./font/IBM_Plex_Mono/IBMPlexMono-Regular.ttf);
}

@font-face {
  font-family: 'Instrument Serif';
  src: url(./font/Instrument_Serif/InstrumentSerif-Regular.ttf);
}

body {
  margin: 0;
  scrollbar-width: none;
  background: var(--black);
}

body::-webkit-scrollbar {
  display: none;
}

header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  backdrop-filter: blur(5px);
  position: fixed;
  padding: 1rem;
}

header a span {
  visibility: hidden;
}

header a:hover span {
  visibility: visible;
}

main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: 'Instrument Serif';
}

main div {
  display: flex;
  gap: 1rem;
}

footer {
  position: fixed;
  backdrop-filter: blur(5px);
  width: 100%;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
}

h1 {
  font-size: 3rem;
}

p {
  font-size: 13px;
  width: 100%;
  max-width: 50vw;
  text-align: justify;
}

a {
  text-decoration: none;
  padding: 5px;
  font-size: 13px;
}

.active {
  text-decoration: line-through;
}

a:not(.active):hover {
  opacity: 0.8;
}

@media all and (max-width: 732px) {
  p {
    max-width: 100vw;
    padding: 2rem;
  }
}
