/* Border utilities */

.border { border: 1px solid var(--main-color); }
.border--success { border-color: green; }
.border--warning { border-color: orange; }
.border--error { border-color: red; }
.border--top-0 { border-top: none; }
.border--right-0 { border-right: none; }
.border--bottom-0 { border-bottom: none; }
.border--left-0 { border-left: none; }
.border--medium { border-width: 3px; }
.border--thick { border-width: 5px; }
.border--round { border-radius: 0.3em; }
.border--rounder { border-radius: 1em; }
.border--roundest { border-radius: 2160px; }

/* Gutter utilities */

.gutter { margin: 1em; }
.gutter--top-0 { margin-top: 0; }
.gutter--right-0 { margin-right: 0; }
.gutter--bottom-0 { margin-bottom: 0; }
.gutter--left-0 { margin-left: 0; }

/* Text utilities */

.center-font {
  text-align: center;
}

.background-dark-72 {
  background-color: var(--media-background-dark);
  margin: 0;
  padding: 1em;
  max-width: 72ch;
}
