body {
  font-family: "Kanit", sans-serif;
  background: #252525;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#demo {
  position: relative;
  width: 621px;
  height: 385px;
  border: 1px solid #333;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/32887/creative-process-bg.png);
}

#main {
  position: absolute;
  width: 250px;
  top: 130px;
  left: 20px;
}

h1 {
  font-size: 50px;
  font-weight: 500;
}

h2 {
  font-size: 40px;
  font-weight: 200;
  margin-top: -10px;
}

p {
  font-weight: 200;
  margin-top: 14px;
  font-size: 16px;
  line-height: 20px;
}

#images {
  position: absolute;
  left: 375px;
  top: 80px;
}

.myButton {
  margin-top: 20px;
  -moz-box-shadow: inset 0px 1px 0px 0px #fbafe3;
  -webkit-box-shadow: inset 0px 1px 0px 0px #fbafe3;
  box-shadow: inset 0px 1px 0px 0px #fbafe3;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #ff905c),
    color-stop(1, #ef027d)
  );
  background: -moz-linear-gradient(top, #ff905c 5%, #ef027d 100%);
  background: -webkit-linear-gradient(top, #ff905c 5%, #ef027d 100%);
  background: -o-linear-gradient(top, #ff905c 5%, #ef027d 100%);
  background: -ms-linear-gradient(top, #ff905c 5%, #ef027d 100%);
  background: linear-gradient(to bottom, #ff905c 5%, #ef027d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff905c', endColorstr='#ef027d',GradientType=0);
  background-color: #ff905c;
  -moz-border-radius: 17px;
  -webkit-border-radius: 17px;
  border-radius: 17px;
  border: 1px solid #ee1eb5;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #c70067;
}
.myButton:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #ef027d),
    color-stop(1, #ff905c)
  );
  background: -moz-linear-gradient(top, #ef027d 5%, #ff905c 100%);
  background: -webkit-linear-gradient(top, #ef027d 5%, #ff905c 100%);
  background: -o-linear-gradient(top, #ef027d 5%, #ff905c 100%);
  background: -ms-linear-gradient(top, #ef027d 5%, #ff905c 100%);
  background: linear-gradient(to bottom, #ef027d 5%, #ff905c 100%);
}

.myButton:active {
  position: relative;
}
