/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: 'Hithcut';
  src: url('Fonts/Hitchcut.ttf') format('opentype');
}

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

h1 {
  font-family: Hithcut;
}


/* Infobox */

.infobox {
  margin: 0;
  border: 0;
  box-sizing: border-box;

  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Inter", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Microsoft YaHei Light", sans-serif;

  max-width: 250px;
  color: #dcddde;

  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;

  background-color: rgba(255, 255, 255, 0);
  padding: 6px;
}

/* Margin between blocks */
.infobox > *:not(:last-child) {
  margin-bottom: 6px;
}

/* Defines header container */
.infobox .heading {
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}


/* Infobox main header */
.infobox .heading h2 {
  margin: 0;
  line-height: 1;
  font-size: 20px;
}

/* Infobox block header */
.infobox .heading h3 {
  margin: 0;
  line-height: 1;
  font-size: 16px;
}

.infobox-img {
  display: block;
  width: 100%;
}

/* Row inside a block*/
.infobox-datarow {
  font-size: 12px;
}

/* Block heading margin */
.infobox-group .heading {
  margin-bottom: 8px;
}

/* Defines data display */
.infobox-datarow .data-heading,
.infobox-datarow .data-content {
  display: inline-block;
  margin: 2px;
  vertical-align: top;
}

.infobox-datarow .data-heading {
  width: 72px;
  font-weight: 500;
}

.infobox-datarow .data-content {
  list-style-type: none !important;
  padding-left: 0;
}

.infobox-datarow .data-content * {
  white-space: pre-wrap;
}

/* Removing bullets that obsidian renders from code blocks */
.infobox .infobox-datarow .list-bullet::before,
.infobox .infobox-datarow .list-bullet,
.infobox .infobox-datarow .list-bullet::after {
  all: unset !important;
  display: none !important;
}

/* Removing padding of first column of multi-column markdown */
.mcm-column-div:is(:first-child) {
  padding-inline-start: 0px;
}


/* Increasing page width */
body {
  --file-line-width: 900px;
}