* {
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --loader-ink: #000000;
  --loader-muted: #555555;
  --loader-white: #ffffff;
  --loader-gray: #dedede;
}

.startup-screen {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 32px;
  overflow: hidden;
  background: var(--loader-white);
  color: var(--loader-ink);
  font-family: "Space Grotesk", sans-serif;
  animation: startup-exit 0.45s 1.55s forwards;
}

.startup-screen::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 5px,
    rgba(0, 0, 0, 0.025) 6px
  );
  content: "";
  pointer-events: none;
}

.startup-mark,
.startup-meta,
.startup-progress,
.startup-status {
  position: relative;
}

.startup-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--loader-ink);
  border-radius: 50%;
  color: var(--loader-ink);
  font-size: 1.35rem;
  font-weight: 700;
  animation: startup-pulse 1.8s ease-in-out infinite;
}

.startup-mark span {
  position: absolute;
  right: 15px;
  bottom: 11px;
  color: var(--loader-ink);
  font-size: 0.9rem;
}

.startup-meta {
  text-align: center;
}

.startup-meta p,
.startup-status {
  margin: 0;
  color: var(--loader-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.startup-meta h2 {
  margin: 8px 0 0;
  color: var(--loader-ink);
  font-size: clamp(3.8rem, 11vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.startup-progress {
  width: min(300px, 80vw);
  height: 3px;
  overflow: hidden;
  background: var(--loader-gray);
}

.startup-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--loader-ink);
  transform: scaleX(0);
  transform-origin: left;
  animation: startup-load 1.7s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.startup-status span {
  color: var(--loader-ink);
}

.startup-screen.is-hidden {
  display: none;
}

@keyframes startup-pulse {
  50% {
    transform: translateY(-4px);
  }
}

@keyframes startup-load {
  to {
    transform: scaleX(1);
  }
}

@keyframes startup-exit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

body {
  margin: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)), url("file:///C:/Users/11180874/Downloads/DEFCADC9-C22F-471B-8811-D6BDD10E9007.gif");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #222;
  font-family: "Helvetica Neue", Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 1;
  animation: ambient-shift 8s ease-in-out infinite;
}

@keyframes ambient-shift {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

#all-contents {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 40px;
}

.learn-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  padding: 12px 18px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #08090a;
  font: 700 0.8rem "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  box-shadow: 4px 4px 0 #08090a;
}

.learn-button:hover,
.learn-button:focus-visible {
  background: #fff;
  background: #000;
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.learn-backdrop {
  position: fixed;
  inset: 0;
  z-index: 6;
  background: rgba(0, 0, 0, 0.45);
}

.learn-panel {
  position: fixed;
  top: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 7;
  width: min(440px, calc(100% - 40px));
  padding: 26px;
  overflow-y: auto;
  background: rgba(8, 9, 10, 0.96);
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.72);
  transform: translateX(calc(100% + 40px));
  transition: transform 0.25s ease;
}

.learn-panel.is-open {
  transform: translateX(0);
}

.learn-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 18px;
}

.learn-kicker,
.learn-intro,
.lesson p {
  color: #c0c0c0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.learn-kicker {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.learn-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: -0.04em;
}

.learn-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.learn-intro {
  margin: 18px 0 24px;
}

.lesson {
  margin-top: 18px;
}

.lesson-number {
  margin-bottom: 5px !important;
  color: #fff !important;
  font-family: "DM Mono", monospace;
  font-size: 0.65rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lesson h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
}

.lesson p {
  margin: 6px 0 10px;
}

.lesson pre {
  margin: 0;
  padding: 14px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #111416;
  color: #fff;
  font: 0.72rem/1.55 "DM Mono", monospace;
  white-space: pre;
}

.learn-credit {
  margin: 28px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font: 0.68rem "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spark {
  position: fixed;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 15px rgba(200, 220, 255, 0.6);
  z-index: 3;
  animation: spark-float linear forwards;
}

@keyframes spark-float {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: 100vw;
    top: -20px;
    opacity: 0;
  }
}

main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(420px, 1.6fr);
  align-items: center;
  min-height: calc(100vh - 160px);
  gap: clamp(32px, 5vw, 80px);
}

.sidebar {
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
h2 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.content > p {
  margin: 0;
  color: #c0c0c0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-icon {
  display: inline-flex;
  min-width: 30px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.status-line[data-state="sleeping"] .status-icon {
  animation: status-drift 1.8s ease-in-out infinite;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.status-line[data-state="coding"] .status-icon {
  animation: status-blink 2s ease-in-out infinite;
}

.status-line[data-state="coding"] svg {
  width: 32px;
  height: 24px;
}

.status-line[data-state="awake"] .status-icon {
  animation: status-glow 2.4s ease-in-out infinite;
}

.status-line[data-state="trading"] .status-icon {
  animation: status-trade 1s ease-in-out infinite;
}

.status-line[data-state="awake"] svg {
  width: 32px;
  height: 24px;
}

.status-line[data-state="trading"] svg {
  width: 32px;
  height: 24px;
}

@keyframes status-drift {
  50% {
    transform: translateY(-3px);
  }
}

@keyframes status-glow {
  50% {
    transform: rotate(8deg) scale(1.08);
  }
}

@keyframes status-blink {
  50% {
    transform: translateY(-2px);
  }
}

@keyframes status-trade {
  50% {
    transform: translateY(-3px) scale(1.08);
  }
}

h2 {
  color: #080808; /* bright accent */
}

.content p {
  color: #c0c0c0;
}

#interests {
  margin-top: 32px;
  width: 100%;
}
#interests h3 {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
}

#interests ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#interests li {
  color: #555;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
}

#interests li:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

#interests li:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-2px);
}
#interests h3 {
  color: #fff;
}

#interests li {
  background: #f5f0f1;
  border-color: #08090a;
  color: #070303;
}

#interests li:hover {
  background: #08090c;
  color: #fff;
}

.daily-verse {
  width: 100%;
  max-width: 520px;
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 3px solid #fff;
  background: rgba(0, 0, 0, 0.64);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
}

.daily-verse-label {
  margin: 0 0 12px !important;
  color: #fff !important;
  font: 700 0.68rem "DM Mono", monospace !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.daily-verse blockquote {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.55;
}

.daily-verse cite {
  display: block;
  margin-top: 12px;
  color: #c0c0c0;
  font: 0.7rem "DM Mono", monospace;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-img {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  filter: grayscale(100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition:
    filter 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.sidebar-img:hover {
  filter: grayscale(0%);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
h3 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
h3 {
  color: #fff;
}
.sidebar-img {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  filter: grayscale(100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition:
    filter 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.sidebar-img:hover {
  filter: grayscale(0%);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.sidebar-img {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  padding: 16px 24px;
  background: rgba(20, 20, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

nav h1 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
}

#nav-ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-li a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.nav-li a:hover {
  background: #fff;
  color: #000;
}
nav {
  background: #e1e1e6;
  border-color: #d2d2d8;
}

nav h1 {
  color: #000000;
  cursor: default;
  transition: color 0.25s ease;
}

nav h1:hover,
nav h1:focus-visible {
  color: #3f49a3;
}

.nav-li a {
  color: #000;
}

.nav-li a:hover {
  background: #1b1b1b;
  color: #ebe2e2;
}

html {
  --theme-nav: #ffffff;
  --theme-nav-text: #000000;
  --theme-accent: #147d91;
  --theme-surface: rgba(255, 255, 255, 0.94);
}

body[data-wallpaper-theme] nav {
  background: var(--theme-nav);
  border-color: color-mix(in srgb, var(--theme-nav-text) 24%, transparent);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

body[data-wallpaper-theme] nav h1,
body[data-wallpaper-theme] nav a {
  color: var(--theme-nav-text);
}

body[data-wallpaper-theme] nav a:hover,
body[data-wallpaper-theme] nav a[aria-current="page"] {
  background: var(--theme-nav-text);
  color: var(--theme-accent);
}

.schedule-page {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 0 72px;
}

.schedule-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.schedule-heading h2 {
  margin: 0;
  color: #000;
  font-size: clamp(3.5rem, 10vw, 7rem);
}

.schedule-heading p {
  max-width: 280px;
  margin: 0 0 8px;
  color: #555;
  font-size: 0.85rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.schedule-day {
  min-height: 330px;
  padding: 18px;
  border-top: 4px solid #000;
  background: #f5f0f1;
}

.schedule-day h3 {
  margin: 0 0 22px;
  color: #000;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.schedule-day ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-day li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d2d2d8;
}

.schedule-day li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.schedule-time {
  color: #777;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-event {
  color: #111;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 780px) {
  #all-contents {
    padding: 20px;
  }

  nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  #nav-ul {
    flex-wrap: wrap;
  }

  .schedule-page {
    padding-top: 16px;
  }

  .schedule-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --loader-ink: #000;
  --loader-muted: #555;
  --loader-white: #fff;
  --loader-gray: #ddd;
}

body {
  background: #fff;
  color: #000;
}

h1,
h2,
h3,
.game-copy h2,
.schedule-heading h2 {
  color: #000 !important;
}

nav {
  background: #fff;
  border-color: #000;
}

.content > p,
.content p,
.schedule-heading p {
  color: #555;
}

#interests h3 {
  color: #000;
}

#interests li,
.schedule-day {
  background: #fff;
  border-color: #000;
  color: #000;
}

.status-icon {
  color: #000;
}

.sidebar-img {
  filter: grayscale(100%);
}

/*
  Portfolio-only redesign moved to portfolio.css so shared pages keep
  their original styling.
Modern editorial layer
:root {
  --ink: #18211c;
  --muted: #6b736e;
  --paper: #f4f1ea;
  --panel: #fffdf8;
  --lime: #c7f36b;
  --coral: #ff785f;
  --line: rgba(24, 33, 28, 0.18);
}

body {
  background:
    radial-gradient(circle at 92% 8%, rgba(199, 243, 107, 0.34), transparent 22rem),
    var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
}

#all-contents {
  max-width: 1380px;
  padding: 28px clamp(20px, 5vw, 72px) 64px;
}

nav {
  margin-bottom: clamp(48px, 9vw, 112px);
  padding: 0 0 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

nav h1 {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

#nav-ul {
  gap: 4px;
}

.nav-li a {
  display: block;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-li a:hover,
.nav-li a[aria-current="page"] {
  background: var(--ink);
  color: var(--lime);
}

main {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: clamp(32px, 8vw, 128px);
}

.sidebar-img {
  max-width: 440px;
  border: 1px solid var(--ink);
  border-radius: 0;
  filter: grayscale(100%) contrast(1.05);
  box-shadow: 14px 14px 0 var(--coral);
}

.sidebar-img:hover {
  filter: grayscale(0%) contrast(1.05);
  transform: translate(-4px, -4px);
  box-shadow: 18px 18px 0 var(--lime);
}

.content {
  gap: 16px;
}

h2,
h3 {
  color: var(--ink) !important;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.content h2,
.content h3 {
  font-size: clamp(4rem, 11vw, 9rem);
}

.content h3 {
  color: var(--coral) !important;
}

.content > p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.status-line {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.status-icon {
  color: var(--coral);
}

#interests {
  margin-top: 34px;
}

#interests h3 {
  margin-bottom: 14px;
  color: var(--muted) !important;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

#interests ul {
  gap: 8px;
}

#interests li {
  padding: 10px 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  font-size: 0.82rem;
}

#interests li:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-3px) rotate(-2deg);
}

.schedule-page {
  max-width: none;
  padding: 0;
}

.schedule-heading h2 {
  color: var(--ink) !important;
  font-size: clamp(4rem, 11vw, 9rem);
}

.schedule-heading p {
  color: var(--muted);
}

.schedule-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.schedule-day {
  min-height: 300px;
  padding: 22px;
  border: 0;
  border-top: 8px solid var(--lime);
  background: var(--panel);
}

.schedule-day:nth-child(even) {
  border-top-color: var(--coral);
}

.schedule-day h3 {
  margin-bottom: 30px;
  color: var(--ink) !important;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.schedule-day li {
  border-bottom-color: var(--line);
}

.schedule-event {
  color: var(--ink);
}

#portfolio {
  width: 100%;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

#portfolio li {
  border-bottom: 1px solid var(--line);
}

#portfolio a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: padding 0.2s ease, color 0.2s ease;
}

#portfolio a::after {
  color: var(--coral);
  content: "↗";
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

#portfolio a:hover {
  padding-left: 12px;
  color: var(--coral);
}

#portfolio a:hover::after {
  transform: translate(4px, -4px);
}

@media (max-width: 780px) {
  main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sidebar-img {
    max-width: 320px;
  }

  .schedule-heading {
    margin-bottom: 28px;
  }
}

@media (max-width: 460px) {
  nav {
    gap: 12px;
  }

  nav h1 {
    font-size: 0.7rem;
  }

  .content h2,
  .content h3,
  .schedule-heading h2 {
    font-size: clamp(3.5rem, 20vw, 6rem);
  }

  .sidebar-img {
    max-width: calc(100% - 14px);
  }
}

.sidebar-img:hover {
  filter: grayscale(100%);
}

Consistent black-and-white theme
:root {
  --ink: #000;
  --muted: #555;
  --paper: #fff;
  --coral: #000;
  --teal: #000;
  --line: rgba(0, 0, 0, 0.16);
}

body {
  background: #fff;
  color: #000;
}

h1,
h2,
h3,
.game-copy h2,
.schedule-heading h2 {
  color: #000 !important;
}

.status-line,
.status-copy,
.status-icon {
  color: #000;
}

nav,
.schedule-day,
#interests li {
  border-color: #000;
}

.sidebar-img {
  filter: grayscale(100%);
}
*/
