/*
 * Only for demo purposes
 */
.demo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.button {
  background: none;
  border: none;
  padding: 15px 40px;
  border-radius: 100px;
  font-size: 18px;
  text-decoration: none;
  color: white;
  transition: box-shadow .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; }