@font-face {
  font-family: 'MyWebFont';
  src: url('./webfont.woff') format('woff'), url('./webfont.ttf') format('truetype');
}

html {
  font-family: 'MyWebFont';
  direction: rtl;
}

body {
  height: auto;
  width: 80%;
  margin: 0 auto;
  padding: 16px;
}

.logo {
  width: 120px;
}

.screenshot {
  width: 250px;
  padding: 4px;
}

.container {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.row {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.desc {
}

.downloads {
  margin-top: 32px;
}

.support {
  margin-top: 24px;
  padding: 8px;
}

.phone {
  margin-top: 24px;
}

.email {
  height: 22px;
}

.border {
  background-color: beige;
  border-radius: 16px;
  padding: 8px 16px 0px 16px;
  margin-bottom: 32px;
}

.button {
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  background-color: rgb(145, 7, 7);
  color: #ffffff;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.75em 1.42857em;
  border: 1px solid;
  line-height: 1.42857143;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 5px;
  border-radius: 32px;
  /*-webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;*/
}

.downloadButton {
  -moz-box-shadow: inset 0px 1px 0px 0px #f5978e;
  -webkit-box-shadow: inset 0px 1px 0px 0px #f5978e;
  box-shadow: inset 0px 1px 0px 0px #f5978e;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f24537), color-stop(1, #c62d1f));
  background: -moz-linear-gradient(top, #f24537 5%, #c62d1f 100%);
  background: -webkit-linear-gradient(top, #f24537 5%, #c62d1f 100%);
  background: -o-linear-gradient(top, #f24537 5%, #c62d1f 100%);
  background: -ms-linear-gradient(top, #f24537 5%, #c62d1f 100%);
  background: linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f24537', endColorstr='#c62d1f',GradientType=0);
  background-color: #f24537;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  border: 3px solid #d02718;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  padding: 6px 48px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #810e05;
  margin-top: 16px;
}
.downloadButton:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24537));
  background: -moz-linear-gradient(top, #c62d1f 5%, #f24537 100%);
  background: -webkit-linear-gradient(top, #c62d1f 5%, #f24537 100%);
  background: -o-linear-gradient(top, #c62d1f 5%, #f24537 100%);
  background: -ms-linear-gradient(top, #c62d1f 5%, #f24537 100%);
  background: linear-gradient(to bottom, #c62d1f 5%, #f24537 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24537',GradientType=0);
  background-color: #c62d1f;
}
.downloadButton:active {
  position: relative;
  top: 1px;
}
