* {
  margin: 0;
  padding: 0;
}

html {
  font-family: "YS Text", Helvetica, sans-serif;
  color: #fff;
}

body {
  margin: 0;
  padding: 0;

  background-color: #ef4a46;
}

::selection {
  color: #1b1b1b;
  background: #f9d41c;
}

a {
  color: #fff;
  text-decoration: none;
}

h1 {
  font-size: 48px;
  margin: 0;
}

h2 {
  font-size: 48px;
  margin: 0;
}

.input {
  all: unset;
  min-width: 260px;
  max-width: 500px;
  width: 90%;
  background-color: #fff;
  font-size: 22px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  color: #000;
  border-radius: 26px;
  text-align: left;
}

.submit {
  all: unset;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 22px;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  border-radius: 26px;
  letter-spacing: 0.5px;

  cursor: pointer;

  position: relative;
  display: inline-block;
}

.submit:active {
  top: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

.flex {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.flexRow {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.flexCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  height: 100%;
}

.header {
  min-height: 70px;
}

.contentBody {
  margin-top: 25px;
}

.googlePlayBadge {
  margin-left: -15px;
  margin-right: -15px;
}

.mainText {
  color: rgba(255, 255, 255, 0.75);
}

.mainText > span {
  color: rgba(255, 255, 255, 1);
}

.footerText {
  font-size: 14px;
  font-weight: 300;

  opacity: 0.75;
}

.phoneImageWrapper {
  position: relative;
  overflow: hidden;
}

.phoneImage {
  width: 100%;
  min-width: 600px;
  max-width: 1200px;

  top: 0;
  align-self: end;

  position: absolute;

  pointer-events: none;
}

.button-link {
  display: inline-block;
}

.button {
  display: flex;
  align-items: center;

  padding: 5px;
  padding-right: 7.5px;

  border-radius: 5px;
}

.button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.button > .material-icons {
  top: -1px;
  position: relative;
}

.button-text {
  font-weight: 300;
  margin-left: 5px;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.separator {
  width: 150px;
  height: 1px;
  margin-top: 7.5px;
  margin-bottom: 7.5px;
  background-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 740px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 32px;
  }

  .contentBody {
    flex-direction: column;
  }

  .h1Block {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .mobileCenter {
    margin: 0 auto;
    text-align: center;
  }

  .button {
    justify-content: center;
  }
}

@media (min-width: 741px) {
  .button {
    margin-left: -5px;
  }

  .h1Block {
    margin-top: 75px;
    margin-bottom: 75px;
  }

  .mainText {
    width: 350px;
  }

  .columnLeftContent {
    padding-left: 15px;
    align-self: end;
  }
}
