#content {
  background: #212121;
  max-width: 500px;
  margin: 100px auto 16px;
  padding: 58px 40px 40px 40px;
  border-radius: 65px;
}

#content .logo {
  grid-area: logo;
  width: 200px;
  height: auto;
  fill: #00E676;
}

#content .actions {
  margin-left: 32px;
}

#content h1 {
  font-size: 42px;
  font-weight: 300;
  line-height: 42px;
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255);
}

#content h3 {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
}

#content .title {
  grid-area: title;
  align-self: end;
}

#content .store-action {
  grid-area: store-action;
  align-self: start;
  width: 8.4375em;
  height: 2.5em;
  background-image: url(/assets/google-play-badge.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: inline-block;
  overflow: hidden;
  text-indent: -1000em;
}

.grid {
  display: grid;
  grid-template-columns: min-content;
  grid-template-rows: auto min-content min-content;
  grid-template-areas: 
    "logo title"
    "logo title"
    "logo store-action";
  column-gap: 32px;
}

.ios-message {
  text-align: center;
  padding: 0 45px;
}

#content .ios-message h3 {
  color: #ffffff;
  text-align: center;
}

@media (max-width: 600px) {
  #content {
    max-width: 100%;
    border-bottom-left-radius: initial;
    border-bottom-right-radius: initial;
    margin: 70px 0 0 0;
    padding: 36px 40px;
  }

  .grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #content .title {
    align-self: initial;
  }

  #content .title {
    margin-bottom: 16px;
  }

  #content .store-action {
    align-self: initial;
    margin-top: 32px;
  }

  .divider {
    margin: 40px auto 25px auto;
  }

  .ios-message {
    padding: 0;
  }
}