/* 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." */



body {
  background-image: url("ellie_images/smiletile.png");
  background-repeat: repeat;
  color: white;
  font-family: 'Comic Sans MS';
  max-width: 85%;
}

body {
   background-color: #272b34;
}

a:link {
  color: #64D1C5;
}

/* visited link */
a:visited {
  color: #FF00E1;
}



.content {
  max-width: 66%;
  margin: auto;
}

* {
  box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
  
}

.left {
  width: 66%;
  background-image: url('/ellie_images/ellie_pattern.png');
}

.right {
  width: 33%;
  background-image: url('/ellie_images/hmarble.png');
}

/* Infobox */

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

  max-width: auto;
  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;
}