/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Gotham Medium", "Montserrat", sans-serif;
  color: #EFEFEF;
  background: url("./tile.png");
  background-size: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
body div {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
body div h1 {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  text-align: center;
}
body img {
  max-width: 100%;
  width: 8em;
  height: auto;
  margin-bottom: 1.5em;
}
body a {
  display: block;
  width: 100%;
  color: #EFEFEF;
  font-size: 1.25em;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  font-weight: 500;
  text-align: center;
  margin: 0.5em auto;
}

/*# sourceMappingURL=style.css.map */
