/* Overriding default font */

body {
  font-family: "Muli", "sans-serif";
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Muli", sans-serif;
}

/* Avatar preview */

.preview {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 2px;
  border: 1px solid #dadada;
}

/* Disable resizing for all textarea */

textarea {
  resize: none;
}

/* Show a placeholder for empty contenteditable component */

[contenteditable][placeholder]:empty:before {
  content: attr(placeholder);
  position: absolute;
  color: #a2a2a2;
  background-color: transparent;
}

