button {
  /* Variables */
  --button_radius: 0.75em;
  --button_color: #000000;
  --button_outline_color: #CAC9C8;
  font-size: 17px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: var(--button_radius);
  background: var(--button_outline_color);
  margin-right: 5px;
}
