/*===== Demos Style =====*/
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  background: #ddd;
}

.demos {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  height: 100%;
}

.demo {
  width: 46%;
  margin: 30px 2%;
  text-align: center;
}

.demo:first-child {
  margin-right: 1%;
}

.demo:last-child {
  margin-left: 1%;
}

.demo img {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
}

.demo .link {
  display: inline-block;
  color: #fff;
  padding: 14px 24px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-family: arial;
  background: #ed226f;
  border-radius: 30px;
  margin: 15px auto;
}

.demo.dark .link {
  background: #7111ab;
}

/* responsive */
@media only screen and (max-width: 768px) {
  .demos {
    flex-flow: column;
    padding-top: 30px;
    height: auto;
  }

  .demo {
    width: 80%;
    margin: 30px 10% !important;
  }
}
