html, body {
  margin: 0;
}

img {
  width: 100%;
}

@media screen and (min-width: 399px) {
  img {
    margin-bottom: -5px;
  }
}

.grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 0;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.header {
  background-color: #fff000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  padding: 1.5em;
}

.logo {
  padding: 10px;
  background-image: url(img/jelexie-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 6em;
  height: 3em;
}

.download {
  position: relative;
  background: #da251c;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1em;
  border-radius: 50px;
  margin: 10px 0;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.download:hover {
  opacity: .8;
}
/*# sourceMappingURL=style.css.map */