/* Clean Slate */
* {
  margin: 0;
  padding: 0;
  border: 0;
}

@font-face {
  font-family: "Motherish";
  src: url("/Motherish-Regular.otf") format("opentype")
}

* {
  font-family: Motherish;
}

body {
  background-color: rgb(36, 26, 46);
}

.horizontal-box {
  display: flex;
  flex-direction: row;
}

.vertical-box {
  display: flex;
  flex-direction: column;
}