@charset "UTF-8";
/* 1. Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins */
* {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
}

/* 5. Set core body defaults */
body {
  min-height: 100dvh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 6. Make images easier to work with */
img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 7. Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  display: grid;
  place-items: center;
}

.holy-grail-container {
  display: grid;
  width: 100%;
  max-width: 1280px;
  min-height: 100dvh;
  gap: 1rem;
  grid-template-columns: 200px 1fr 200px;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "header  header  header" "nav     main    aside" "footer  footer  footer";
}

header {
  grid-area: header;
}

nav#left-column {
  grid-area: nav;
}

main {
  grid-area: main;
}

aside#right-column {
  grid-area: aside;
}

footer {
  grid-area: footer;
}

div.two-columns {
  display: flex;
  gap: 1rem;
}

.minidisc-widget-column {
  display: grid;
  place-items: center;
}

.minidisc-widget {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 320px;
}

@media (max-width: 1080px) {
  div.two-columns {
    display: flex;
    flex-direction: column;
  }
  div.two-columns .minidisc-widget-column {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .holy-grail-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "header" "nav" "main" "aside" "footer";
  }
}
body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #222;
}

hr {
  border: 1px solid rgb(214, 214, 214);
  margin: 1rem 0;
}

q {
  quotes: "«" "»";
  font-style: italic;
}

p {
  max-width: 80ch;
}

h4.sidebar-heading {
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  font-weight: 800;
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}
h4.sidebar-heading:before, h4.sidebar-heading:after {
  content: "♦";
}

ul.navigation {
  list-style: none;
}
ul.navigation li.menu-item {
  width: 100%;
}
ul.navigation li.menu-item:hover {
  background-color: #90dbf4;
}
ul.navigation li.menu-item span.menu-item-icon {
  font-size: 20px;
  margin-right: 6px;
}
ul.navigation li.menu-item a {
  text-decoration: none;
  color: #222;
  display: block;
  padding: 0.25rem;
}
ul.navigation li.menu-item a svg {
  height: 16px;
  fill: black;
  display: inline-block;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#site-updates-container {
  background-color: #272822;
  padding: 0;
  border-radius: 0.25rem;
  overflow: hidden;
  font-family: "IBM Plex Mono", monospace;
}

.terminal-header {
  padding: 0.6rem 0.8rem 0.4rem;
  border-bottom: 1px solid #3e3d32;
  font-size: 0.72rem;
  color: #75715e;
}
.terminal-header .prompt-line {
  color: #a6e22e;
}
.terminal-header .prompt-line span.path {
  color: #66d9e8;
}
.terminal-header .prompt-line span.cmd {
  color: #f8f8f2;
}
.terminal-header .prompt-line span.cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: #f8f8f2;
  vertical-align: middle;
  margin-left: 1px;
  animation: blink 1s step-end infinite;
}

.site-updates-scroll {
  max-height: 290px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0.5rem 0.8rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: #c0c0c0 #808080;
}
.site-updates-scroll::-webkit-scrollbar {
  width: 16px;
}
.site-updates-scroll::-webkit-scrollbar-track {
  background: #808080;
  border-left: 1px solid #404040;
}
.site-updates-scroll::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  min-height: 20px;
}
.site-updates-scroll::-webkit-scrollbar-button {
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  height: 16px;
  display: block;
}

.site-updates-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-updates-list li {
  position: relative;
  padding: 0.85rem 0.3rem 1.2rem 2rem;
  margin: 0;
  line-height: 1.7;
  border-bottom: 1px solid #3e3d32;
  font-size: 0.78rem;
  color: #f8f8f2;
}
.site-updates-list li::before {
  content: "●";
  position: absolute;
  left: 0.6rem;
  top: 1rem;
  color: #75715e;
  font-size: 0.5rem;
  line-height: 1.7;
}
.site-updates-list li:first-child::before {
  color: #a6e22e;
}
.site-updates-list li strong {
  color: #e6db74;
  font-weight: 600;
}
.site-updates-list li:first-child strong::after {
  content: "[HEAD]";
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.05em 0.4em;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #272822;
  background-color: #a6e22e;
  border-radius: 0;
  vertical-align: middle;
  line-height: 1.5;
}
.site-updates-list li a {
  color: #66d9e8;
  text-decoration: none;
  border-bottom: 1px dashed #66d9e8;
}
.site-updates-list li a:hover {
  color: #ae81ff;
  border-bottom-color: #ae81ff;
}
.site-updates-list li q {
  color: #fd971f;
  font-style: italic;
}
.site-updates-list li p {
  margin: 0;
}

.log-end {
  padding: 0.9rem 0 0.3rem;
  text-align: center;
  font-size: 0.68rem;
  color: #75715e;
  letter-spacing: 0.05em;
}
.log-end .log-end-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
}
.log-end .log-end-line::before, .log-end .log-end-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #3e3d32;
}
.log-end .log-end-label {
  color: #f92672;
  font-weight: 600;
}
.log-end .log-end-sub {
  margin-top: 0.3rem;
  color: #75715e;
  font-style: italic;
}

#OuterDisc,
#DataLayer,
#MetaRing,
#ClampingPlateRing,
#ClampingPlate,
#Label {
  stroke: #000;
  stroke-width: 0.216;
  stroke-miterlimit: 10;
}

#OuterDisc {
  fill: #f4f4f4;
}

#DataLayer {
  fill: url(#discBase);
}

#MetaRing {
  fill: #c3c6e2;
}

#ClampingPlateRing {
  fill: #939393;
}

#ClampingPlate {
  fill: #686868;
}

#PlasticShell,
#PlasticShellIndent {
  stroke: #6a8aaa;
  stroke-width: 0.5669;
  stroke-miterlimit: 10;
  fill: url(#plasticGradient);
}

.plastic-sheen {
  fill: url(#plasticSheen);
  stroke: none;
  pointer-events: none;
}

#Label {
  fill: #fff;
  fill-rule: evenodd;
  clip-rule: evenodd;
}

#Shutter {
  fill: url(#aluminiumGradient);
  fill-rule: evenodd;
  clip-rule: evenodd;
  stroke: #888;
  stroke-width: 0.216;
  stroke-miterlimit: 10;
}

.aluminium-sheen {
  fill: url(#aluminiumSheen);
  stroke: none;
  pointer-events: none;
}

#InsertThisEnd,
#Sany {
  fill: #6a8aaa;
  opacity: 0.5;
}
#InsertThisEnd polygon:first-child,
#Sany polygon:first-child {
  fill-rule: evenodd;
  clip-rule: evenodd;
  stroke: #6a8aaa;
  stroke-width: 0.216;
  stroke-miterlimit: 10;
}

#MDLogo {
  fill: #71777a;
  opacity: 0.5;
}
#MDLogo path {
  fill-rule: evenodd;
  clip-rule: evenodd;
}
#MDLogo path:first-child {
  fill-rule: nonzero;
  clip-rule: nonzero;
}

#Sany {
  fill-rule: evenodd;
  clip-rule: evenodd;
}

#md-cover-art {
  filter: contrast(1.05) saturate(0.95);
}

#Disc {
  transform-origin: 365px 384px;
  animation: spin 2s linear infinite;
  animation-play-state: paused;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body {
  background: #cfbaf0;
  padding: 1rem;
}

#fancy-gradient-bg {
  background-color: hsl(333, 0%, 100%);
  background-image: radial-gradient(circle at 0% 0%, hsla(64, 82%, 77%, 0.35) 3.1210986267%, transparent 40%), radial-gradient(circle at 20% 0%, hsla(5, 77%, 74%, 0.35) 3.1210986267%, transparent 40%), radial-gradient(circle at 40% 0%, hsla(315, 77%, 74%, 0.35) 3.1210986267%, transparent 40%), radial-gradient(circle at 60% 0%, hsla(256, 77%, 74%, 0.35) 3.1210986267%, transparent 40%), radial-gradient(circle at 80% 0%, hsla(191, 77%, 74%, 0.35) 3.1210986267%, transparent 40%), radial-gradient(circle at 100% 0%, hsla(152, 77%, 74%, 0.35) 3%, transparent 40%);
  background-blend-mode: normal, normal, normal, normal, normal, normal;
}

header,
footer {
  background: transparent;
  padding: 1rem;
  text-align: center;
}

#welcome-screen {
  background-color: #fff;
  padding: 1.6rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}
#welcome-screen h2 {
  margin-bottom: 0.8rem;
}

#left-column,
#right-column {
  background-color: #e4e4e4;
  padding: 0.5rem;
}/*# sourceMappingURL=main.css.map */