@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat|Roboto");
body {
  padding: 2rem;
  font-family: Roboto, sans-serif;
  line-height: 1.6;
  color: #626169;
  border: 2rem solid #eee;
}
body:last-child:after {
  content: "Made with ☕️";
  text-align: center;
  display: block;
  margin-top: 2rem;
}

h1, h2, h3, h4, h5, h6 {
  color: tomato;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  margin: 0 0 1.6rem;
}

h3 {
  color: #626169;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
}

p {
  margin: 0 0 1.6rem;
}

code {
  display: inline-block;
  background: #eee;
  padding: 2.5px 8px;
}

.flex-grid {
  width: 100%;
  display: flex;
}
.flex-grid > div {
  width: 50%;
}

.spacing-examples,
.padding-examples {
  margin: 1rem 0;
}
.spacing-examples div,
.padding-examples div {
  background-color: #eee;
  border: 1px solid currentColor;
}

.padding-examples div {
  margin-bottom: 0.25rem;
}

.spacing-examples div {
  padding: 0.25rem;
}

.paintchip-examples > span {
  display: inline-block;
  border: 1px solid currentColor;
  width: 100px;
  padding: 8px;
  margin: 10px 20px 10px 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.paintchip-examples > span:before {
  content: "";
  display: block;
  height: 100px;
  margin-bottom: 0.4rem;
  background: currentColor;
}
.paintchip-examples > span:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}