/**
 * https://piccalil.li/blog/a-modern-css-reset/
 */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/** End CSS reset */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  color: #fafafa;
  background: linear-gradient(90deg, #0F2027 0.98%, #203A43 49.97%, #2C5364 100%);
}

h3 {
  margin-top: 2em;
}

h3 + p {
  margin-top: 1em;
}

.lead {
  font-size: 24px;
}

.container {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 2em auto;
  padding: 16px;
}

.header,
.content {
  max-width: 700px;
}

@media screen and (min-width: 800px) {
  .header,
  .content {
    padding-left: 70px;
  }
}

.content p {
  margin-bottom: 1em;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  text-align: center;
  margin-bottom: 2em;
}

.header > * + * {
  margin-top: 2em;
}

.heading {
  font-size: 48px;
  margin: 2rem 0 0 0;
}

.logo {
  display: block;
  background-color: #fafafa;
  padding: 20px;
  border-radius: 52px;
  box-shadow: rgba(0,0,0,.2) 2px 2px 8px;
}

.download {
  display: block;
}

.download img {
  width: 250px;
  height: 83px;
}

.media {
  margin-top: 4em;
  max-width: 800px;
}

.media img {
  margin: 0;
  width: 100%;
  height: auto;
}

.media > *  + * {
  display: block;
  margin-top: 2em;
}

.footer {
  font-size: 16px;
  margin-top: 4em;
  padding-top: 1em;
  border-top: 1px solid #eee;
}

a,
a:link {
  color:aqua;
  text-decoration: none;
}

a:hover,
a:active {
  text-decoration: underline;
}