:root {
  --wg-blue: #010a29;
  --bg: #f0f0f2;
}

body {
  color: var(--wg-blue);
  font-family: Inter, sans-serif;
}

h1 {
  letter-spacing: -.06em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 88px;
}

a {
  color: var(--wg-blue);
  text-decoration: none;
}

.body {
  background-color: var(--wg-blue);
  color: var(--wg-blue);
  padding: 20px;
  font-family: Inter, sans-serif;
}

.page {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: #fff;
  border-radius: 32px;
  flex-flow: column;
  min-height: calc(100vh - 40px);
  padding: 96px 40px 40px;
  display: flex;
}

.logo {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 20px;
  display: flex;
}

.logo-img {
  border-radius: 8px;
  width: 80px;
  height: 80px;
}

.uc-oswald {
  font-family: Oswald, sans-serif;
}

.page-footer {
  grid-row-gap: 12px;
  color: #010a2980;
  justify-content: space-between;
  margin-top: auto;
  font-size: 12px;
  display: flex;
}

.content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  letter-spacing: -.04em;
  flex-flow: column;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 32px;
  display: flex;
}

.contact-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #010a29b3;
  text-align: center;
  text-wrap: balance;
  flex-flow: column;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  display: flex;
}

.sm-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #010a290d;
  border-radius: 32px;
  flex-flow: row;
  justify-content: center;
  padding: 20px;
  display: flex;
}

.sm-icon {
  background-color: var(--wg-blue);
  color: #fff;
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 16px;
  display: flex;
}

.i-32 {
  width: 32px;
  height: 32px;
}

.uc-body {
  color: #010a29b3;
}

.stores-msg {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.store-btn {
  background-color: #010a290d;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  height: 28px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.store-btnmask {
  mix-blend-mode: exclusion;
  background-color: #fff;
  position: absolute;
  inset: 0%;
  transform: translate(-100%);
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 56px;
    line-height: 64px;
  }

  .page {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding: 48px 20px 20px;
  }

  .logo {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    font-size: 16px;
  }

  .logo-img {
    width: 48px;
    height: 48px;
  }

  .page-footer {
    flex-flow: wrap-reverse;
    justify-content: center;
  }

  .content {
    max-width: 80%;
    font-size: 16px;
    line-height: 24px;
  }

  .sm-block {
    flex-flow: wrap;
  }
}


