:root {
  /* Catppuccin Mocha Color Palette */
  
  /* Accent Colors */
  --rosewater: #f5e0dc;
  --flamingo: #f2cdcd;
  --pink: #f5c2e7;
  --mauve: #cba6f7;
  --red: #f38ba8;
  --maroon: #eba0ac;
  --peach: #fab387;
  --yellow: #f9e2af;
  --green: #a6e3a1;
  --teal: #94e2d5;
  --sky: #89dceb;
  --sapphire: #74c7ec;
  --blue: #89b4fa;
  --lavender: #b4befe;
  
  /* Text Colors */
  --text: #cdd6f4;
  --subtext-1: #bac2de;
  --subtext-0: #a6adc8;
  
  /* Overlay Colors */
  --overlay-2: #9399b2;
  --overlay-1: #7f849c;
  --overlay-0: #6c7086;
  
  /* Surface Colors */
  --surface-2: #585b70;
  --surface-1: #45475a;
  --surface-0: #313244;
  
  /* Base Colors */
  --base: #1e1e2e;
  --mantle: #181825;
  --crust: #11111b;
}

* {
  background-color: var(--base);
  color: var(--text);
  margin: 16px;
  padding: 0px;
}

@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

h2 {
  margin: 0;
}

.size-256 {
  width: 256px;
  height: 256px;
}

.box {
  outline: 2px dashed;
}

.bg-peach {
  background-color: var(--peach);
}

.text-peach {
  color: var(--peach);
}

.text-base {
  color: var(--base);
}

.text-overlay-0 {
  color: var(--overlay-0);
}

.text-subtext-1 {
  color: var(--subtext-1);
}

.text-sm {
  font-size: 0.875rem;
}

.inline-block {
  display: inline-block;
}

.p0 {
  padding: 0px;
}

.hp8 {
  padding: 0px 8px 0px 8px;
}

.m0 {
  margin: 0px;
}

.title {
  font-size: 64px;
}

/* Display */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

/* Direction */
.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

/* Justify Content */
.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* Align Items */
.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

/* Gap */
.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

/* Wrap */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Size */
.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

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

.dot-separator {
  height: 3px;
  background-image: radial-gradient(circle, var(--overlay-0) 2px, transparent 2px);
  background-size: 16px 3px;
  background-repeat: repeat-x;
  margin: 8px 0;
}

.dot-separator:last-child {
  display: none;
}
