/*
 * Only for demo purposes
 */
* {
  box-sizing: border-box;
}
body {
  font-size: 18px;
  font-family: sans-serif;
  margin: 0;
}
.demo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: auto;
}
.button {
  background: none;
  border: none;
  padding: 15px 40px;
  border-radius: 100px;
  font-size: 18px;
  text-decoration: none;
  color: white;
  transition: box-shadow 0.25s ease-in-out;
}
.button:not(:last-child) {
  margin-right: 30px;
}
.button:hover,
.button:focus,
.button:active {
  outline: none;
  cursor: pointer;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}
.button--red {
  background-color: #E62117;
}
.button--blue {
  background-color: #17272E;
}
.button--orange {
  background-color: #EF8A17;
}
