/** Add your extra/custom CSS classes below */

/* Force a pure black background */
body, 
.md-main, 
.md-content,
.md-content__inner, 
.md-typeset {
  background-color: #000000 !important;
  color: #ffffff !important;
}

/* Headings */
.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4,
.md-typeset h5,
.md-typeset h6 {
  color: #ffffff !important;
}

/* Navigation (sidebar + header) */
.md-nav,
.md-header,
.md-sidebar {
  background-color: #000000 !important;
  color: #ffffff !important;
}

/* Links */
a, 
.md-typeset a {
  color: #ffffff !important; /* neon green accent (change if you want) */
}

/* Code blocks */
code, pre {
  background-color: #111111 !important;
  color: #ffffff !important;
}

/* Assignments page */
.assignments-grid .row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
.assignment-link{
  position: relative;
  width: 32%;
  background-size: cover;
  background-position: center;
  min-height: 200px;
}
.assignment-link:hover{
  opacity: 0.7;
}
.assignment-link img{
  width: 100%;
}
.assignment-link span{
  position: absolute;
  left: 0;
  padding: 6px;
  bottom: 0;
  width: 100%;
  font-weight: bold;
  color: white;
  background: #12121261;
}

