@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Regular.otf");
  font-weight: 400;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-SemiBold.otf");
  font-weight: 600;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Light.otf");
  font-weight: 300;
}

:root {
  --text-color: 20, 58, 82;
  --background-color: 250, 250, 250;
  --border-color: 223, 223, 223;
  --font-family: "Proxima Nova", Arial, sans-serif;
}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  font-size: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1.8rem;
  line-height: 170%;
  font-family: var(--font-family);
  color: rgba(var(--text-color), 1);
  background-color: rgba(var(--background-color), 1);
}

@media (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

#app {
  width: 100vw;
  height: 100vh;
  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: 5rem 3rem;
}

@media (max-width: 768px) {
  #app {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.logo {
  max-width: 10rem;
  max-height: 10rem;
}

.link-grid {
  width: 100%;
  max-width: 48rem;
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 16px;
  margin-block: 5rem;
}

@media (max-width: 768px) {
  .link-grid {
    margin-block: 3rem;
  }
}

.link-item {
  display: block;
  padding: 3rem;
  border-bottom: 1px solid rgba(var(--border-color), 1);
  color: rgba(var(--text-color), 1);
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
}

.link-item-buttons {
}

.link-item-apple,
.link-item-android {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  padding: 3rem;
  display: block;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}

.link-item-apple::before {
  content: "Download on Apple";
}

.link-item-android::before {
  content: "Download on Android";
}

.link-item-apple::before,
.link-item-android::before {
  display: block;
  font-size: 2.2rem;
}

.link-item:first-of-type {
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}

.link-item:last-of-type {
  border-bottom: 0px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

.link-item:hover,
.link-item:focus,
.link-item:active {
  background-color: rgba(var(--text-color), 0.03);
}

.link-heading {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.link-text {
  font-weight: 300;
  max-width: 30rem;
}

.link-item-buttons .link-heading {
  padding: 3rem 3rem 0 3rem;
  display: none;
}

.link-item-buttons .link-text {
  display: none;
  max-width: none;
  padding: 0 3rem 3rem;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}

.link-icon {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: none;
}

.powered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.powered a {
  display: block;
  margin-left: 0.5rem;
}

.powered a img {
  display: block;
}
/*# sourceMappingURL=style.css.map */
