:root {
  --main-color: #BF1E2E;
  --main-color-dark: #A01826;
  --main-bg-color: #231F20;
  --main-text-color: #FFFFFF;
  --bulma-body-family: "Times New Roman", serif;
  --bulma-body-font-size: 1.2em;
  --bulma-size-normal: 1em;
}

html {
  background-color: var(--main-bg-color);
}

body {
  color: var(--main-text-color);
}

strong {
  color: var(--main-text-color);
}

.csc-footer {
  padding: 10px;
}

.csc-footer-copyright {
  font-size: 0.8em;
}

.csc-footer-disclaimer {
  font-size: 0.6em;
}

hr {
  background-color: var(--main-text-color);
}

.title, .subtitle {
  color: var(--main-text-color); 
}

.subtitle strong {
  color: var(--main-text-color);
}

.red {
  background-color: var(--main-color);
  text-align: center;
  color: var(--main-text-color);
}

.button.red:hover {
  background-color: var(--main-color-dark);
  color: var(--main-text-color);
}

a {
  color: #EC8892;
}

a:hover {
  color: var(--main-color);
}

.no-border {
  border: none;
}

.navbar, .navbar-menu, .navbar-item, .navbar-burger {
  background-color: var(--main-color);
  color: var(--main-text-color);
}

.grid.is-vcentered > .cell {
  margin-top: auto;
  margin-bottom: auto;
}

.column.is-vcentered {
  margin-top: auto;
  margin-bottom: auto;
}

.is-clickable {
  cursor: pointer;
}

.grid.is-narrow {
  grid-template-columns: auto auto;
  justify-content: center;
}

.video-thumbnail-container {
  display: grid;
  place-items: center;
  cursor: pointer;
}

.video-thumbnail-container > img {
  grid-area: 1 / 1;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.video-thumbnail-play-button {
  max-width: 100%;
  max-height: 40%;
}

.video-thumbnail-container:hover .video-thumbnail-play-button {
  scale: 0.9;
}

/* Fix card-footer adding extra margin when there's more than one child element */
.content p:not(:last-child) {
  margin-bottom: 0;
}